Code source

Replicated code from Jenny Trickey’s repo here

Trip/drift: CalCurCEAS_2024_025

Summaries generated: 2025 Jun 10 21:06 UTC

Setup

Load needed libraries.

# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)

# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)

Set user-defined variables.

# name project
# ProjID <- 'MHI UxS Glider Project'

# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)

# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets, 
                          paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML

# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp


# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files 
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files") 
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")

# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported 

# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)

#Set time zone to UTC
Sys.setenv(TZ = 'UTC')

# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3', 
#                '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a', 
               '#66a61e', '#e6ab02')

Define needed functions

Source some external functions

source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))

# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))

Load and prep AcousticStudies

If already created, load an existing dets PAMpal AcousticStudy object for event processing. We need to load both the unfiltered dets and filtered detsFilt AcousticStudies.

# load existing dets AcousticStudy (created with 
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
  dets <- readRDS(detsFile)
  cat('Loaded', detsFile, '\n')
} else {
  cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_025/CalCurCEAS_2024_025_Filtered.rdata
if (file.exists(detsFiltFile)){
  detsFilt <- readRDS(detsFiltFile)
  cat('Loaded', detsFiltFile, '\n')
} else {
  cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_025/CalCurCEAS_2024_025_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))

Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_025/CalCurCEAS_2024_025_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_025/CalCurCEAS_2024_025_ch1.rdata

## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 16182 out of 16182 missing binary files. 
## Updating files in events...
##   |                                                                                                                               |                                                                                                                       |   0%  |                                                                                                                               |=                                                                                                                      |   0%  |                                                                                                                               |=                                                                                                                      |   1%  |                                                                                                                               |==                                                                                                                     |   1%  |                                                                                                                               |==                                                                                                                     |   2%  |                                                                                                                               |===                                                                                                                    |   2%  |                                                                                                                               |===                                                                                                                    |   3%  |                                                                                                                               |====                                                                                                                   |   3%  |                                                                                                                               |====                                                                                                                   |   4%  |                                                                                                                               |=====                                                                                                                  |   4%  |                                                                                                                               |=====                                                                                                                  |   5%  |                                                                                                                               |======                                                                                                                 |   5%  |                                                                                                                               |=======                                                                                                                |   5%  |                                                                                                                               |=======                                                                                                                |   6%  |                                                                                                                               |========                                                                                                               |   6%  |                                                                                                                               |========                                                                                                               |   7%  |                                                                                                                               |=========                                                                                                              |   7%  |                                                                                                                               |=========                                                                                                              |   8%  |                                                                                                                               |==========                                                                                                             |   8%  |                                                                                                                               |==========                                                                                                             |   9%  |                                                                                                                               |===========                                                                                                            |   9%  |                                                                                                                               |===========                                                                                                            |  10%  |                                                                                                                               |============                                                                                                           |  10%  |                                                                                                                               |=============                                                                                                          |  11%  |                                                                                                                               |==============                                                                                                         |  11%  |                                                                                                                               |==============                                                                                                         |  12%  |                                                                                                                               |===============                                                                                                        |  12%  |                                                                                                                               |===============                                                                                                        |  13%  |                                                                                                                               |================                                                                                                       |  13%  |                                                                                                                               |================                                                                                                       |  14%  |                                                                                                                               |=================                                                                                                      |  14%  |                                                                                                                               |=================                                                                                                      |  15%  |                                                                                                                               |==================                                                                                                     |  15%  |                                                                                                                               |==================                                                                                                     |  16%  |                                                                                                                               |===================                                                                                                    |  16%  |                                                                                                                               |====================                                                                                                   |  16%  |                                                                                                                               |====================                                                                                                   |  17%  |                                                                                                                               |=====================                                                                                                  |  17%  |                                                                                                                               |=====================                                                                                                  |  18%  |                                                                                                                               |======================                                                                                                 |  18%  |                                                                                                                               |======================                                                                                                 |  19%  |                                                                                                                               |=======================                                                                                                |  19%  |                                                                                                                               |=======================                                                                                                |  20%  |                                                                                                                               |========================                                                                                               |  20%  |                                                                                                                               |========================                                                                                               |  21%  |                                                                                                                               |=========================                                                                                              |  21%  |                                                                                                                               |==========================                                                                                             |  21%  |                                                                                                                               |==========================                                                                                             |  22%  |                                                                                                                               |===========================                                                                                            |  22%  |                                                                                                                               |===========================                                                                                            |  23%  |                                                                                                                               |============================                                                                                           |  23%  |                                                                                                                               |============================                                                                                           |  24%  |                                                                                                                               |=============================                                                                                          |  24%  |                                                                                                                               |=============================                                                                                          |  25%  |                                                                                                                               |==============================                                                                                         |  25%  |                                                                                                                               |==============================                                                                                         |  26%  |                                                                                                                               |===============================                                                                                        |  26%  |                                                                                                                               |================================                                                                                       |  26%  |                                                                                                                               |================================                                                                                       |  27%  |                                                                                                                               |=================================                                                                                      |  27%  |                                                                                                                               |=================================                                                                                      |  28%  |                                                                                                                               |==================================                                                                                     |  28%  |                                                                                                                               |==================================                                                                                     |  29%  |                                                                                                                               |===================================                                                                                    |  29%  |                                                                                                                               |===================================                                                                                    |  30%  |                                                                                                                               |====================================                                                                                   |  30%  |                                                                                                                               |====================================                                                                                   |  31%  |                                                                                                                               |=====================================                                                                                  |  31%  |                                                                                                                               |=====================================                                                                                  |  32%  |                                                                                                                               |======================================                                                                                 |  32%  |                                                                                                                               |=======================================                                                                                |  32%  |                                                                                                                               |=======================================                                                                                |  33%  |                                                                                                                               |========================================                                                                               |  33%  |                                                                                                                               |========================================                                                                               |  34%  |                                                                                                                               |=========================================                                                                              |  34%  |                                                                                                                               |=========================================                                                                              |  35%  |                                                                                                                               |==========================================                                                                             |  35%  |                                                                                                                               |==========================================                                                                             |  36%  |                                                                                                                               |===========================================                                                                            |  36%  |                                                                                                                               |===========================================                                                                            |  37%  |                                                                                                                               |============================================                                                                           |  37%  |                                                                                                                               |=============================================                                                                          |  37%  |                                                                                                                               |=============================================                                                                          |  38%  |                                                                                                                               |==============================================                                                                         |  38%  |                                                                                                                               |==============================================                                                                         |  39%  |                                                                                                                               |===============================================                                                                        |  39%  |                                                                                                                               |===============================================                                                                        |  40%  |                                                                                                                               |================================================                                                                       |  40%  |                                                                                                                               |================================================                                                                       |  41%  |                                                                                                                               |=================================================                                                                      |  41%  |                                                                                                                               |=================================================                                                                      |  42%  |                                                                                                                               |==================================================                                                                     |  42%  |                                                                                                                               |===================================================                                                                    |  42%  |                                                                                                                               |===================================================                                                                    |  43%  |                                                                                                                               |====================================================                                                                   |  43%  |                                                                                                                               |====================================================                                                                   |  44%  |                                                                                                                               |=====================================================                                                                  |  44%  |                                                                                                                               |=====================================================                                                                  |  45%  |                                                                                                                               |======================================================                                                                 |  45%  |                                                                                                                               |======================================================                                                                 |  46%  |                                                                                                                               |=======================================================                                                                |  46%  |                                                                                                                               |=======================================================                                                                |  47%  |                                                                                                                               |========================================================                                                               |  47%  |                                                                                                                               |=========================================================                                                              |  48%  |                                                                                                                               |==========================================================                                                             |  48%  |                                                                                                                               |==========================================================                                                             |  49%  |                                                                                                                               |===========================================================                                                            |  49%  |                                                                                                                               |===========================================================                                                            |  50%  |                                                                                                                               |============================================================                                                           |  50%  |                                                                                                                               |============================================================                                                           |  51%  |                                                                                                                               |=============================================================                                                          |  51%  |                                                                                                                               |=============================================================                                                          |  52%  |                                                                                                                               |==============================================================                                                         |  52%  |                                                                                                                               |===============================================================                                                        |  53%  |                                                                                                                               |================================================================                                                       |  53%  |                                                                                                                               |================================================================                                                       |  54%  |                                                                                                                               |=================================================================                                                      |  54%  |                                                                                                                               |=================================================================                                                      |  55%  |                                                                                                                               |==================================================================                                                     |  55%  |                                                                                                                               |==================================================================                                                     |  56%  |                                                                                                                               |===================================================================                                                    |  56%  |                                                                                                                               |===================================================================                                                    |  57%  |                                                                                                                               |====================================================================                                                   |  57%  |                                                                                                                               |====================================================================                                                   |  58%  |                                                                                                                               |=====================================================================                                                  |  58%  |                                                                                                                               |======================================================================                                                 |  58%  |                                                                                                                               |======================================================================                                                 |  59%  |                                                                                                                               |=======================================================================                                                |  59%  |                                                                                                                               |=======================================================================                                                |  60%  |                                                                                                                               |========================================================================                                               |  60%  |                                                                                                                               |========================================================================                                               |  61%  |                                                                                                                               |=========================================================================                                              |  61%  |                                                                                                                               |=========================================================================                                              |  62%  |                                                                                                                               |==========================================================================                                             |  62%  |                                                                                                                               |==========================================================================                                             |  63%  |                                                                                                                               |===========================================================================                                            |  63%  |                                                                                                                               |============================================================================                                           |  63%  |                                                                                                                               |============================================================================                                           |  64%  |                                                                                                                               |=============================================================================                                          |  64%  |                                                                                                                               |=============================================================================                                          |  65%  |                                                                                                                               |==============================================================================                                         |  65%  |                                                                                                                               |==============================================================================                                         |  66%  |                                                                                                                               |===============================================================================                                        |  66%  |                                                                                                                               |===============================================================================                                        |  67%  |                                                                                                                               |================================================================================                                       |  67%  |                                                                                                                               |================================================================================                                       |  68%  |                                                                                                                               |=================================================================================                                      |  68%  |                                                                                                                               |==================================================================================                                     |  68%  |                                                                                                                               |==================================================================================                                     |  69%  |                                                                                                                               |===================================================================================                                    |  69%  |                                                                                                                               |===================================================================================                                    |  70%  |                                                                                                                               |====================================================================================                                   |  70%  |                                                                                                                               |====================================================================================                                   |  71%  |                                                                                                                               |=====================================================================================                                  |  71%  |                                                                                                                               |=====================================================================================                                  |  72%  |                                                                                                                               |======================================================================================                                 |  72%  |                                                                                                                               |======================================================================================                                 |  73%  |                                                                                                                               |=======================================================================================                                |  73%  |                                                                                                                               |=======================================================================================                                |  74%  |                                                                                                                               |========================================================================================                               |  74%  |                                                                                                                               |=========================================================================================                              |  74%  |                                                                                                                               |=========================================================================================                              |  75%  |                                                                                                                               |==========================================================================================                             |  75%  |                                                                                                                               |==========================================================================================                             |  76%  |                                                                                                                               |===========================================================================================                            |  76%  |                                                                                                                               |===========================================================================================                            |  77%  |                                                                                                                               |============================================================================================                           |  77%  |                                                                                                                               |============================================================================================                           |  78%  |                                                                                                                               |=============================================================================================                          |  78%  |                                                                                                                               |=============================================================================================                          |  79%  |                                                                                                                               |==============================================================================================                         |  79%  |                                                                                                                               |===============================================================================================                        |  79%  |                                                                                                                               |===============================================================================================                        |  80%  |                                                                                                                               |================================================================================================                       |  80%  |                                                                                                                               |================================================================================================                       |  81%  |                                                                                                                               |=================================================================================================                      |  81%  |                                                                                                                               |=================================================================================================                      |  82%  |                                                                                                                               |==================================================================================================                     |  82%  |                                                                                                                               |==================================================================================================                     |  83%  |                                                                                                                               |===================================================================================================                    |  83%  |                                                                                                                               |===================================================================================================                    |  84%  |                                                                                                                               |====================================================================================================                   |  84%  |                                                                                                                               |=====================================================================================================                  |  84%  |                                                                                                                               |=====================================================================================================                  |  85%  |                                                                                                                               |======================================================================================================                 |  85%  |                                                                                                                               |======================================================================================================                 |  86%  |                                                                                                                               |=======================================================================================================                |  86%  |                                                                                                                               |=======================================================================================================                |  87%  |                                                                                                                               |========================================================================================================               |  87%  |                                                                                                                               |========================================================================================================               |  88%  |                                                                                                                               |=========================================================================================================              |  88%  |                                                                                                                               |=========================================================================================================              |  89%  |                                                                                                                               |==========================================================================================================             |  89%  |                                                                                                                               |===========================================================================================================            |  90%  |                                                                                                                               |============================================================================================================           |  90%  |                                                                                                                               |============================================================================================================           |  91%  |                                                                                                                               |=============================================================================================================          |  91%  |                                                                                                                               |=============================================================================================================          |  92%  |                                                                                                                               |==============================================================================================================         |  92%  |                                                                                                                               |==============================================================================================================         |  93%  |                                                                                                                               |===============================================================================================================        |  93%  |                                                                                                                               |===============================================================================================================        |  94%  |                                                                                                                               |================================================================================================================       |  94%  |                                                                                                                               |================================================================================================================       |  95%  |                                                                                                                               |=================================================================================================================      |  95%  |                                                                                                                               |==================================================================================================================     |  95%  |                                                                                                                               |==================================================================================================================     |  96%  |                                                                                                                               |===================================================================================================================    |  96%  |                                                                                                                               |===================================================================================================================    |  97%  |                                                                                                                               |====================================================================================================================   |  97%  |                                                                                                                               |====================================================================================================================   |  98%  |                                                                                                                               |=====================================================================================================================  |  98%  |                                                                                                                               |=====================================================================================================================  |  99%  |                                                                                                                               |====================================================================================================================== |  99%  |                                                                                                                               |====================================================================================================================== | 100%  |                                                                                                                               |=======================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 16182 out of 16182 missing binary files. 
## Updating files in events...
##   |                                                                                                                               |                                                                                                                       |   0%  |                                                                                                                               |=                                                                                                                      |   0%  |                                                                                                                               |=                                                                                                                      |   1%  |                                                                                                                               |==                                                                                                                     |   1%  |                                                                                                                               |==                                                                                                                     |   2%  |                                                                                                                               |===                                                                                                                    |   2%  |                                                                                                                               |===                                                                                                                    |   3%  |                                                                                                                               |====                                                                                                                   |   3%  |                                                                                                                               |====                                                                                                                   |   4%  |                                                                                                                               |=====                                                                                                                  |   4%  |                                                                                                                               |=====                                                                                                                  |   5%  |                                                                                                                               |======                                                                                                                 |   5%  |                                                                                                                               |=======                                                                                                                |   5%  |                                                                                                                               |=======                                                                                                                |   6%  |                                                                                                                               |========                                                                                                               |   6%  |                                                                                                                               |========                                                                                                               |   7%  |                                                                                                                               |=========                                                                                                              |   7%  |                                                                                                                               |=========                                                                                                              |   8%  |                                                                                                                               |==========                                                                                                             |   8%  |                                                                                                                               |==========                                                                                                             |   9%  |                                                                                                                               |===========                                                                                                            |   9%  |                                                                                                                               |===========                                                                                                            |  10%  |                                                                                                                               |============                                                                                                           |  10%  |                                                                                                                               |=============                                                                                                          |  11%  |                                                                                                                               |==============                                                                                                         |  11%  |                                                                                                                               |==============                                                                                                         |  12%  |                                                                                                                               |===============                                                                                                        |  12%  |                                                                                                                               |===============                                                                                                        |  13%  |                                                                                                                               |================                                                                                                       |  13%  |                                                                                                                               |================                                                                                                       |  14%  |                                                                                                                               |=================                                                                                                      |  14%  |                                                                                                                               |=================                                                                                                      |  15%  |                                                                                                                               |==================                                                                                                     |  15%  |                                                                                                                               |==================                                                                                                     |  16%  |                                                                                                                               |===================                                                                                                    |  16%  |                                                                                                                               |====================                                                                                                   |  16%  |                                                                                                                               |====================                                                                                                   |  17%  |                                                                                                                               |=====================                                                                                                  |  17%  |                                                                                                                               |=====================                                                                                                  |  18%  |                                                                                                                               |======================                                                                                                 |  18%  |                                                                                                                               |======================                                                                                                 |  19%  |                                                                                                                               |=======================                                                                                                |  19%  |                                                                                                                               |=======================                                                                                                |  20%  |                                                                                                                               |========================                                                                                               |  20%  |                                                                                                                               |========================                                                                                               |  21%  |                                                                                                                               |=========================                                                                                              |  21%  |                                                                                                                               |==========================                                                                                             |  21%  |                                                                                                                               |==========================                                                                                             |  22%  |                                                                                                                               |===========================                                                                                            |  22%  |                                                                                                                               |===========================                                                                                            |  23%  |                                                                                                                               |============================                                                                                           |  23%  |                                                                                                                               |============================                                                                                           |  24%  |                                                                                                                               |=============================                                                                                          |  24%  |                                                                                                                               |=============================                                                                                          |  25%  |                                                                                                                               |==============================                                                                                         |  25%  |                                                                                                                               |==============================                                                                                         |  26%  |                                                                                                                               |===============================                                                                                        |  26%  |                                                                                                                               |================================                                                                                       |  26%  |                                                                                                                               |================================                                                                                       |  27%  |                                                                                                                               |=================================                                                                                      |  27%  |                                                                                                                               |=================================                                                                                      |  28%  |                                                                                                                               |==================================                                                                                     |  28%  |                                                                                                                               |==================================                                                                                     |  29%  |                                                                                                                               |===================================                                                                                    |  29%  |                                                                                                                               |===================================                                                                                    |  30%  |                                                                                                                               |====================================                                                                                   |  30%  |                                                                                                                               |====================================                                                                                   |  31%  |                                                                                                                               |=====================================                                                                                  |  31%  |                                                                                                                               |=====================================                                                                                  |  32%  |                                                                                                                               |======================================                                                                                 |  32%  |                                                                                                                               |=======================================                                                                                |  32%  |                                                                                                                               |=======================================                                                                                |  33%  |                                                                                                                               |========================================                                                                               |  33%  |                                                                                                                               |========================================                                                                               |  34%  |                                                                                                                               |=========================================                                                                              |  34%  |                                                                                                                               |=========================================                                                                              |  35%  |                                                                                                                               |==========================================                                                                             |  35%  |                                                                                                                               |==========================================                                                                             |  36%  |                                                                                                                               |===========================================                                                                            |  36%  |                                                                                                                               |===========================================                                                                            |  37%  |                                                                                                                               |============================================                                                                           |  37%  |                                                                                                                               |=============================================                                                                          |  37%  |                                                                                                                               |=============================================                                                                          |  38%  |                                                                                                                               |==============================================                                                                         |  38%  |                                                                                                                               |==============================================                                                                         |  39%  |                                                                                                                               |===============================================                                                                        |  39%  |                                                                                                                               |===============================================                                                                        |  40%  |                                                                                                                               |================================================                                                                       |  40%  |                                                                                                                               |================================================                                                                       |  41%  |                                                                                                                               |=================================================                                                                      |  41%  |                                                                                                                               |=================================================                                                                      |  42%  |                                                                                                                               |==================================================                                                                     |  42%  |                                                                                                                               |===================================================                                                                    |  42%  |                                                                                                                               |===================================================                                                                    |  43%  |                                                                                                                               |====================================================                                                                   |  43%  |                                                                                                                               |====================================================                                                                   |  44%  |                                                                                                                               |=====================================================                                                                  |  44%  |                                                                                                                               |=====================================================                                                                  |  45%  |                                                                                                                               |======================================================                                                                 |  45%  |                                                                                                                               |======================================================                                                                 |  46%  |                                                                                                                               |=======================================================                                                                |  46%  |                                                                                                                               |=======================================================                                                                |  47%  |                                                                                                                               |========================================================                                                               |  47%  |                                                                                                                               |=========================================================                                                              |  48%  |                                                                                                                               |==========================================================                                                             |  48%  |                                                                                                                               |==========================================================                                                             |  49%  |                                                                                                                               |===========================================================                                                            |  49%  |                                                                                                                               |===========================================================                                                            |  50%  |                                                                                                                               |============================================================                                                           |  50%  |                                                                                                                               |============================================================                                                           |  51%  |                                                                                                                               |=============================================================                                                          |  51%  |                                                                                                                               |=============================================================                                                          |  52%  |                                                                                                                               |==============================================================                                                         |  52%  |                                                                                                                               |===============================================================                                                        |  53%  |                                                                                                                               |================================================================                                                       |  53%  |                                                                                                                               |================================================================                                                       |  54%  |                                                                                                                               |=================================================================                                                      |  54%  |                                                                                                                               |=================================================================                                                      |  55%  |                                                                                                                               |==================================================================                                                     |  55%  |                                                                                                                               |==================================================================                                                     |  56%  |                                                                                                                               |===================================================================                                                    |  56%  |                                                                                                                               |===================================================================                                                    |  57%  |                                                                                                                               |====================================================================                                                   |  57%  |                                                                                                                               |====================================================================                                                   |  58%  |                                                                                                                               |=====================================================================                                                  |  58%  |                                                                                                                               |======================================================================                                                 |  58%  |                                                                                                                               |======================================================================                                                 |  59%  |                                                                                                                               |=======================================================================                                                |  59%  |                                                                                                                               |=======================================================================                                                |  60%  |                                                                                                                               |========================================================================                                               |  60%  |                                                                                                                               |========================================================================                                               |  61%  |                                                                                                                               |=========================================================================                                              |  61%  |                                                                                                                               |=========================================================================                                              |  62%  |                                                                                                                               |==========================================================================                                             |  62%  |                                                                                                                               |==========================================================================                                             |  63%  |                                                                                                                               |===========================================================================                                            |  63%  |                                                                                                                               |============================================================================                                           |  63%  |                                                                                                                               |============================================================================                                           |  64%  |                                                                                                                               |=============================================================================                                          |  64%  |                                                                                                                               |=============================================================================                                          |  65%  |                                                                                                                               |==============================================================================                                         |  65%  |                                                                                                                               |==============================================================================                                         |  66%  |                                                                                                                               |===============================================================================                                        |  66%  |                                                                                                                               |===============================================================================                                        |  67%  |                                                                                                                               |================================================================================                                       |  67%  |                                                                                                                               |================================================================================                                       |  68%  |                                                                                                                               |=================================================================================                                      |  68%  |                                                                                                                               |==================================================================================                                     |  68%  |                                                                                                                               |==================================================================================                                     |  69%  |                                                                                                                               |===================================================================================                                    |  69%  |                                                                                                                               |===================================================================================                                    |  70%  |                                                                                                                               |====================================================================================                                   |  70%  |                                                                                                                               |====================================================================================                                   |  71%  |                                                                                                                               |=====================================================================================                                  |  71%  |                                                                                                                               |=====================================================================================                                  |  72%  |                                                                                                                               |======================================================================================                                 |  72%  |                                                                                                                               |======================================================================================                                 |  73%  |                                                                                                                               |=======================================================================================                                |  73%  |                                                                                                                               |=======================================================================================                                |  74%  |                                                                                                                               |========================================================================================                               |  74%  |                                                                                                                               |=========================================================================================                              |  74%  |                                                                                                                               |=========================================================================================                              |  75%  |                                                                                                                               |==========================================================================================                             |  75%  |                                                                                                                               |==========================================================================================                             |  76%  |                                                                                                                               |===========================================================================================                            |  76%  |                                                                                                                               |===========================================================================================                            |  77%  |                                                                                                                               |============================================================================================                           |  77%  |                                                                                                                               |============================================================================================                           |  78%  |                                                                                                                               |=============================================================================================                          |  78%  |                                                                                                                               |=============================================================================================                          |  79%  |                                                                                                                               |==============================================================================================                         |  79%  |                                                                                                                               |===============================================================================================                        |  79%  |                                                                                                                               |===============================================================================================                        |  80%  |                                                                                                                               |================================================================================================                       |  80%  |                                                                                                                               |================================================================================================                       |  81%  |                                                                                                                               |=================================================================================================                      |  81%  |                                                                                                                               |=================================================================================================                      |  82%  |                                                                                                                               |==================================================================================================                     |  82%  |                                                                                                                               |==================================================================================================                     |  83%  |                                                                                                                               |===================================================================================================                    |  83%  |                                                                                                                               |===================================================================================================                    |  84%  |                                                                                                                               |====================================================================================================                   |  84%  |                                                                                                                               |=====================================================================================================                  |  84%  |                                                                                                                               |=====================================================================================================                  |  85%  |                                                                                                                               |======================================================================================================                 |  85%  |                                                                                                                               |======================================================================================================                 |  86%  |                                                                                                                               |=======================================================================================================                |  86%  |                                                                                                                               |=======================================================================================================                |  87%  |                                                                                                                               |========================================================================================================               |  87%  |                                                                                                                               |========================================================================================================               |  88%  |                                                                                                                               |=========================================================================================================              |  88%  |                                                                                                                               |=========================================================================================================              |  89%  |                                                                                                                               |==========================================================================================================             |  89%  |                                                                                                                               |===========================================================================================================            |  90%  |                                                                                                                               |============================================================================================================           |  90%  |                                                                                                                               |============================================================================================================           |  91%  |                                                                                                                               |=============================================================================================================          |  91%  |                                                                                                                               |=============================================================================================================          |  92%  |                                                                                                                               |==============================================================================================================         |  92%  |                                                                                                                               |==============================================================================================================         |  93%  |                                                                                                                               |===============================================================================================================        |  93%  |                                                                                                                               |===============================================================================================================        |  94%  |                                                                                                                               |================================================================================================================       |  94%  |                                                                                                                               |================================================================================================================       |  95%  |                                                                                                                               |=================================================================================================================      |  95%  |                                                                                                                               |==================================================================================================================     |  95%  |                                                                                                                               |==================================================================================================================     |  96%  |                                                                                                                               |===================================================================================================================    |  96%  |                                                                                                                               |===================================================================================================================    |  97%  |                                                                                                                               |====================================================================================================================   |  97%  |                                                                                                                               |====================================================================================================================   |  98%  |                                                                                                                               |=====================================================================================================================  |  98%  |                                                                                                                               |=====================================================================================================================  |  99%  |                                                                                                                               |====================================================================================================================== |  99%  |                                                                                                                               |====================================================================================================================== | 100%  |                                                                                                                               |=======================================================================================================================| 100%

Updated file paths to binaries in databases for F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_025/CalCurCEAS_2024_025_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_025/CalCurCEAS_2024_025_ch1.rdata

Create initial output Event Table CSV

To be used for manual scoring based on report figures.

# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents), 
                      species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))

# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
  evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}

# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]

# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop

# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
                                    paste0('eventTable_', params$mission, '_',
                                           params$drift, '_', Sys.Date(),'.csv')))

2949 events (files) in drift. 303 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.

Load reference spectra, if specified

Load the reference spectra for plotting, if set with refSpecList.

# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
#     e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')

refSpecs <- NULL
if (!is.null(refSpecList)){
  refSpecs = list()
  for (rs in refSpecList){
    refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
  }
}

Event summaries

Loop through each detection event (n = 303) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.

Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.

for (iEvent in c(1:nEventsFilt)){
  # iEvent = 6 # for testing
  # ("pagebreak \n")
  
  # extract this event UID string
  eventList <- PAMpal::events(detsFilt)
  eventUID <- names(eventList)[iEvent]
  
  ###### summarize clicks ######
  cl <- clickSummary(detsFilt, eventUID) 
  
  if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
    # keep this in evTable
    evTable$keep[evTable$id == eventUID] <- TRUE
    evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak, 
                                                         na.rm = TRUE)
    
    # set header for this event and print time
    cat('\n\n#### Event ID:   ', names(eventList)[iEvent], '\n')
    cat('Time:   ', format(eventList[[eventUID]]@ancillary$grouping$start, 
                           '%Y-%m-%d %H:%M%Z'), ' to ', 
        format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'), 
        '\n')
    
    cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])), 
        'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
        'filtering.\n')
    cat('\n')
    
    ###### summarize whistles ######
    # wl <- whistleSummary(detsFilt, eventUID)
    # 
    # cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
    # cat('\n')
    
    ###### click plots and table ######
    
    cat('\n##### Click plots and table\n')
    cat('\n SNR histogram includes all filtered clicks. Other plots contain only', 
        'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
        '.\n')
    cat('\n')
    
    
    # if any clicks...
    if (cl$nClicks > 0){
      # histogram of all clicks and SNR >= 15 dB cut off
      xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
      if (any(!is.na(cl$snr))){
        hist(cl$snr, breaks = seq(from = floor(min(cl$snr)), 
                                  to = xMax, by = 2), 
             main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
        abline(v = 15, lty = 2, lwd = 2, col = 'red4')
      }
      
    }
    
    # if sufficient good clicks...
    if (cl$nGoodClicks > 0) {
      # histogram of click durations - good clicks only
      subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
      hist(cl$goodClicks$duration, 
           breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100, 
                        by = 100), main = 'Click duration', sub = subStr,
           xlab = expression(paste('duration [', mu, 's]')))
      abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
      legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
      
      
      cat('\n')
      cat('\n')
      
      
      # Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
      # NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
      # be noisy for single clicks
      # reducing wl can give more accurate noise floor but 'smoother' spectrum
      # increasing wl will give more exact spectrum but may exclude too many 
      # clicks based on SNR (noise measure will overlap with click output; noise
      # is just measured as same wl from start of binary snippet and binaries 
      # binary snippets are v short)
      # Trial and error - 256 works ok for LLHARP data = 1.28 ms
      # NB: JLKM uses 500 for beaked whales with samp rate 288k
      avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256, 
                                         channel = params$channelNum, norm = TRUE,
                                         noise = TRUE, sort = TRUE, snr = 15, 
                                         plot = c(TRUE, FALSE))
      # concatenated spectrogram will get plotted within calculation
      
      # avg spectrum plots separately (bc adding stuff)
      if (!is.null(avgSpec)) {
        # Peak freq as calculated by calculateAvgerageSpectra -for subtitle
        peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
        
        plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0), 
             xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)', 
             main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
        # add grid lines for frequency at 10 kHz intervals
        for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
        # add template spectra
        if (length(refSpecs) > 0){
          rsCols <- rsPalette[1:length(refSpecs)]
          for (rs in 1:length(refSpecs)){
            rsTmp <- refSpecList[rs]
            rsNorm <- refSpecs[[rsTmp]]
            rsMax <- max(rsNorm$dB)
            rsNorm$dBNorm <- rsNorm$dB - rsMax
            lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
          }
        }
        
        # plot noise
        lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
        # plot avg spectrum
        lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
        # also plot median spectrum
        medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
          median(10^(y/20), na.rm = TRUE)}))
        medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
        lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
        
        # add legend
        if (length(refSpecs) > 0){
          legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
                 lty = c(rep(1, length(refSpecs)), 2, 1, 3),
                 lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
                 col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
        } else if (length(refSpecs) == 0){
          legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
                 lty = c(2, 1, 3), lwd = c(2, 3, 2),
                 col = c('black', 'black', 'black'), cex = 0.8)
        }
      }
      
      
      # NB: JLKM BW approach has additional plots here:
      # IPI
      # Waveform of strongest click
      # Wigner plot
      # We are not including those here because not really useful for FKW, but if
      # interested in adding back in, see:
      #       https://github.com/jlkeating/PAMGuard_Event_Code
      
      
      cat('\n')
      cat('\n')
      
      
      # create median stats table for clicks with -15 dB TK noise cut off
      cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with', 
          'SNR >= 15 dB.')
      cat('\n')
      
      cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l', 
                       row.names = FALSE) %>%
            kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
                          full_width = F))
      
    }  else { # no good clicks so no summary plots/table
      cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
    }
    
    
    ###### whistle plots and table ######
    # 
    # cat('\n##### Whistle plots and table\n')
    # 
    # # if whistles present ...
    # if (wl$nWhistles > 0) {
    #   # create median stats table for all whistles
    #   # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
    #   # cat('\n')
    #   
    #   # plot whistle contours
    #   # map the needed binary files
    #   binFiles <- dets@events[[eventUID]]@files$binaries
    #   wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
    #                     binFiles)
    #   wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
    #   
    #   # load them
    #   whBin <- loadMultiBinaries(wmFiles)
    #   # trim to just the event time
    #   whBinEv <- whBin[names(whBin) %in%
    #                      detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
    #   
    #   # #plot - ggplot version/functionized
    #   # pc <- plotContours(whBinEv)
    #   # # print(pc)
    #   # pc + ggtitle(eventUID)
    #   # 
    #   
    #   # get plot limits
    #   # xMax <- 0
    #   # yMax <- 0
    #   # for (wc in 1:length(names(whBinEv))){
    #   #   df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #   #                    freq = whBinEv[[wc]]$freq/1000)
    #   #   xMaxTmp <- max(df$time)
    #   #   yMaxTmp <- max(df$freq)
    #   #   if (xMaxTmp > xMax){xMax <- xMaxTmp}
    #   #   if (yMaxTmp > yMax){yMax <- yMaxTmp}
    #   # }
    #   # or use standard max lims
    #   xMax <- 1.5
    #   yMax <- 20
    #   
    #   # plot each line
    #   plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)), 
    #        xlab = 'Time (s)', ylab = 'Frequency (kHz)', 
    #        main = 'Whistle Contours')
    #   # add grid lines for frequency at 0.125 s and 5 kHz intervals
    #   for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
    #                                          col="lightgray")}
    #   for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
    #                                       col="lightgray")}
    #   # loop through each contour
    #   for (wc in 1:length(names(whBinEv))){
    #     df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #                      freq = whBinEv[[wc]]$freq/1000)
    #     lines(df$time, df$freq, col = rgb(0,0,0,0.4))
    #   }
    #   
    #   # plot histogram of median frequency
    #   hist(wl$wh$freqMedian/1000, 
    #        breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
    #        main = 'Histogram of whistle median frequency', 
    #        xlab = 'Median frequency (kHz)')
    #   
    #   cat('\n')
    #   cat('\n')
    #   
    #   cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
    #   # create median stats table for all whistles
    #   cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l', 
    #                    row.names = FALSE) %>%
    #         kable_styling(bootstrap_options = c('basic', 'condensed'),
    #                       full_width = F))
    #   
    # } else {
    #   cat('\nNo whistles present.\n')
    # }
    
    cat('\n')
    cat('\n\n --- \n\n')
    cat('\n')
  }# num clicks/peak freq check 
} # loop

Event ID: 7517.241120225401.wav

Time: 2024-11-20 22:54UTC to 2024-11-20 23:00UTC

Event contains 468 original clicks, 234 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 232 clicks) .

Median statistics for 232 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.21
Median 10dB Center Frequency [kHz] 6.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.61 (6.44 - 8.01)
Median 10dB Bandwidth [kHz] (lower-upper) 4.77 (4.27 - 9.7)
Median duration [μs] (25-75 percentile) 177 (128 - 252)

Event ID: 7517.241122001802.wav

Time: 2024-11-22 00:18UTC to 2024-11-22 00:24UTC

Event contains 566 original clicks, 283 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 239 clicks) .

Median statistics for 239 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.04
Median 10dB Center Frequency [kHz] 7.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (6.38 - 7.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.25 (5.46 - 8.75)
Median duration [μs] (25-75 percentile) 540 (102 - 1000)

Event ID: 7517.241122002402.wav

Time: 2024-11-22 00:24UTC to 2024-11-22 00:30UTC

Event contains 804 original clicks, 402 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 349 clicks) .

Median statistics for 349 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.44
Median 10dB Center Frequency [kHz] 6.46
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (5.77 - 7.03)
Median 10dB Bandwidth [kHz] (lower-upper) 3.46 (4.44 - 8.37)
Median duration [μs] (25-75 percentile) 834 (196 - 1296)

Event ID: 7517.241122003002.wav

Time: 2024-11-22 00:30UTC to 2024-11-22 00:36UTC

Event contains 608 original clicks, 304 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 264 clicks) .

Median statistics for 264 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.78
Median 10dB Center Frequency [kHz] 6.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.15 - 7.41)
Median 10dB Bandwidth [kHz] (lower-upper) 3.05 (4.94 - 9.01)
Median duration [μs] (25-75 percentile) 727 (109 - 1200)

Event ID: 7517.241122003602.wav

Time: 2024-11-22 00:36UTC to 2024-11-22 00:42UTC

Event contains 902 original clicks, 451 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 370 clicks) .

Median statistics for 370 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.38
Median 10dB Center Frequency [kHz] 7.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.66 - 8.02)
Median 10dB Bandwidth [kHz] (lower-upper) 3.72 (5.03 - 9.66)
Median duration [μs] (25-75 percentile) 697 (164 - 1653)

Event ID: 7517.241122004202.wav

Time: 2024-11-22 00:42UTC to 2024-11-22 00:48UTC

Event contains 1084 original clicks, 542 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 466 clicks) .

Median statistics for 466 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 7.14
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (6.54 - 7.6)
Median 10dB Bandwidth [kHz] (lower-upper) 2.66 (5.69 - 8.65)
Median duration [μs] (25-75 percentile) 570 (156 - 1722)

Event ID: 7517.241122004802.wav

Time: 2024-11-22 00:48UTC to 2024-11-22 00:54UTC

Event contains 1056 original clicks, 528 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 457 clicks) .

Median statistics for 457 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.06
Median 10dB Center Frequency [kHz] 7.05
Median 3dB Bandwidth [kHz] (lower-upper) 0.991 (6.42 - 7.65)
Median 10dB Bandwidth [kHz] (lower-upper) 3.18 (5.09 - 8.91)
Median duration [μs] (25-75 percentile) 297 (0 - 1000)

Event ID: 7517.241122005402.wav

Time: 2024-11-22 00:54UTC to 2024-11-22 01:00UTC

Event contains 1136 original clicks, 568 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 490 clicks) .

Median statistics for 490 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.19
Median 10dB Center Frequency [kHz] 7.23
Median 3dB Bandwidth [kHz] (lower-upper) 0.947 (6.63 - 7.75)
Median 10dB Bandwidth [kHz] (lower-upper) 3.14 (5.39 - 8.97)
Median duration [μs] (25-75 percentile) 25 (0 - 1000)

Event ID: 7517.241122010002.wav

Time: 2024-11-22 01:00UTC to 2024-11-22 01:06UTC

Event contains 826 original clicks, 413 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 370 clicks) .

Median statistics for 370 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.42
Median 10dB Center Frequency [kHz] 7.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 ( 6.8 - 8.03)
Median 10dB Bandwidth [kHz] (lower-upper) 3.98 (4.92 - 9.22)
Median duration [μs] (25-75 percentile) 100 (0 - 1354)

Event ID: 7517.241122010602.wav

Time: 2024-11-22 01:06UTC to 2024-11-22 01:12UTC

Event contains 548 original clicks, 274 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 239 clicks) .

Median statistics for 239 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.09
Median 10dB Center Frequency [kHz] 7.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (6.45 - 7.71)
Median 10dB Bandwidth [kHz] (lower-upper) 3.25 (5.51 - 8.97)
Median duration [μs] (25-75 percentile) 76 (0 - 1000)

Event ID: 7517.241122012402.wav

Time: 2024-11-22 01:24UTC to 2024-11-22 01:30UTC

Event contains 1756 original clicks, 878 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 744 clicks) .

Median statistics for 744 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.83
Median 10dB Center Frequency [kHz] 6.76
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (6.12 - 7.57)
Median 10dB Bandwidth [kHz] (lower-upper) 3.61 (4.77 - 8.71)
Median duration [μs] (25-75 percentile) 425 (0 - 1230)

Event ID: 7517.241122013002.wav

Time: 2024-11-22 01:30UTC to 2024-11-22 01:36UTC

Event contains 3424 original clicks, 1712 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1316 clicks) .

Median statistics for 1316 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.94
Median 10dB Center Frequency [kHz] 6.87
Median 3dB Bandwidth [kHz] (lower-upper) 1.06 (6.33 - 7.46)
Median 10dB Bandwidth [kHz] (lower-upper) 3.31 (4.99 - 8.63)
Median duration [μs] (25-75 percentile) 5.2 (0 - 1000)

Event ID: 7517.241122013602.wav

Time: 2024-11-22 01:36UTC to 2024-11-22 01:42UTC

Event contains 1924 original clicks, 962 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 863 clicks) .

Median statistics for 863 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.41
Median 10dB Center Frequency [kHz] 7.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (6.82 - 8.01)
Median 10dB Bandwidth [kHz] (lower-upper) 3.15 (5.47 - 9.09)
Median duration [μs] (25-75 percentile) 0 (0 - 31)

Event ID: 7517.241122014202.wav

Time: 2024-11-22 01:42UTC to 2024-11-22 01:48UTC

Event contains 930 original clicks, 465 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 414 clicks) .

Median statistics for 414 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.3
Median 10dB Center Frequency [kHz] 8.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (7.54 - 8.95)
Median 10dB Bandwidth [kHz] (lower-upper) 3.81 (6.38 - 10.4)
Median duration [μs] (25-75 percentile) 102 (0 - 1706)

Event ID: 7517.241122014802.wav

Time: 2024-11-22 01:48UTC to 2024-11-22 01:54UTC

Event contains 1004 original clicks, 502 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 470 clicks) .

Median statistics for 470 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.44
Median 10dB Center Frequency [kHz] 8.59
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (7.28 - 9.2)
Median 10dB Bandwidth [kHz] (lower-upper) 4.16 ( 5.7 - 10.4)
Median duration [μs] (25-75 percentile) 422 (0 - 1489)

Event ID: 7517.241122020602.wav

Time: 2024-11-22 02:06UTC to 2024-11-22 02:12UTC

Event contains 588 original clicks, 294 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 237 clicks) .

Median statistics for 237 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.32
Median 10dB Center Frequency [kHz] 7.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (6.44 - 8.21)
Median 10dB Bandwidth [kHz] (lower-upper) 3.49 (4.57 - 9.61)
Median duration [μs] (25-75 percentile) 141 (8 - 1001)

Event ID: 7517.241122054202.wav

Time: 2024-11-22 05:42UTC to 2024-11-22 05:48UTC

Event contains 656 original clicks, 328 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 271 clicks) .

Median statistics for 271 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.7
Median 10dB Center Frequency [kHz] 11.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.57 (9.27 - 11.7)
Median 10dB Bandwidth [kHz] (lower-upper) 5.15 (6.86 - 14.6)
Median duration [μs] (25-75 percentile) 300 (128 - 1000)

Event ID: 7517.241122100002.wav

Time: 2024-11-22 10:00UTC to 2024-11-22 10:06UTC

Event contains 486 original clicks, 243 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 152 clicks) .

Median statistics for 152 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.85
Median 10dB Center Frequency [kHz] 5.83
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (5.33 - 6.53)
Median 10dB Bandwidth [kHz] (lower-upper) 2.57 (4.61 - 7.13)
Median duration [μs] (25-75 percentile) 181 (35 - 1000)

Event ID: 7517.241122234202.wav

Time: 2024-11-22 23:42UTC to 2024-11-22 23:48UTC

Event contains 418 original clicks, 209 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 92 clicks) .

Median statistics for 92 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 14.6
Median 3dB Center Frequency [kHz] 10
Median 10dB Center Frequency [kHz] 11.7
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (9.58 - 10.6)
Median 10dB Bandwidth [kHz] (lower-upper) 4.33 (7.86 - 13.6)
Median duration [μs] (25-75 percentile) 47 (15 - 109)

Event ID: 7517.241123044802.wav

Time: 2024-11-23 04:48UTC to 2024-11-23 04:54UTC

Event contains 4908 original clicks, 2454 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1918 clicks) .

Median statistics for 1918 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.86
Median 10dB Center Frequency [kHz] 6.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (4.97 - 6.74)
Median 10dB Bandwidth [kHz] (lower-upper) 4.94 (3.59 - 9.31)
Median duration [μs] (25-75 percentile) 1157 (1000 - 1509)

Event ID: 7517.241123045402.wav

Time: 2024-11-23 04:54UTC to 2024-11-23 05:00UTC

Event contains 1756 original clicks, 878 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 664 clicks) .

Median statistics for 664 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.05
Median 10dB Center Frequency [kHz] 6.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 ( 5.3 - 6.77)
Median 10dB Bandwidth [kHz] (lower-upper) 4.54 (3.81 - 9.35)
Median duration [μs] (25-75 percentile) 876 (352 - 1251)

Event ID: 7517.241123093602.wav

Time: 2024-11-23 09:36UTC to 2024-11-23 09:42UTC

Event contains 488 original clicks, 244 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 165 clicks) .

Median statistics for 165 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.74
Median 10dB Center Frequency [kHz] 5.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (5.23 - 6.26)
Median 10dB Bandwidth [kHz] (lower-upper) 2.49 ( 4.6 - 6.92)
Median duration [μs] (25-75 percentile) 289 (44 - 1000)

Event ID: 7517.241123130602.wav

Time: 2024-11-23 13:06UTC to 2024-11-23 13:12UTC

Event contains 750 original clicks, 375 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 292 clicks) .

Median statistics for 292 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.14
Median 10dB Center Frequency [kHz] 8.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.49 (7.09 - 9.17)
Median 10dB Bandwidth [kHz] (lower-upper) 5.08 (5.13 - 11.2)
Median duration [μs] (25-75 percentile) 657 (169 - 1606)

Event ID: 7517.241123131202.wav

Time: 2024-11-23 13:12UTC to 2024-11-23 13:18UTC

Event contains 3644 original clicks, 1822 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1665 clicks) .

Median statistics for 1665 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.73
Median 10dB Center Frequency [kHz] 8.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.83 (6.53 - 8.87)
Median 10dB Bandwidth [kHz] (lower-upper) 5.55 (4.77 - 11.1)
Median duration [μs] (25-75 percentile) 1160 (399 - 2450)

Event ID: 7517.241123131802.wav

Time: 2024-11-23 13:18UTC to 2024-11-23 13:24UTC

Event contains 10278 original clicks, 5139 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4376 clicks) .

Median statistics for 4376 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.16
Median 10dB Center Frequency [kHz] 8.6
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (7.17 - 9.16)
Median 10dB Bandwidth [kHz] (lower-upper) 4.62 (5.12 - 11.1)
Median duration [μs] (25-75 percentile) 1593 (433 - 2477)

Event ID: 7517.241123132402.wav

Time: 2024-11-23 13:24UTC to 2024-11-23 13:30UTC

Event contains 13818 original clicks, 6909 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6238 clicks) .

Median statistics for 6238 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.34
Median 10dB Center Frequency [kHz] 8.56
Median 3dB Bandwidth [kHz] (lower-upper) 1.4 (7.41 - 9.17)
Median 10dB Bandwidth [kHz] (lower-upper) 4.35 (5.55 - 11)
Median duration [μs] (25-75 percentile) 1452 (1000 - 2466)

Event ID: 7517.241123133002.wav

Time: 2024-11-23 13:30UTC to 2024-11-23 13:36UTC

Event contains 15852 original clicks, 7926 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7514 clicks) .

Median statistics for 7514 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.24
Median 10dB Center Frequency [kHz] 8.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 ( 7.2 - 9.22)
Median 10dB Bandwidth [kHz] (lower-upper) 4.71 (5.32 - 11.3)
Median duration [μs] (25-75 percentile) 1311 (1000 - 2461)

Event ID: 7517.241123133602.wav

Time: 2024-11-23 13:36UTC to 2024-11-23 13:42UTC

Event contains 17922 original clicks, 8961 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8443 clicks) .

Median statistics for 8443 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.38
Median 10dB Center Frequency [kHz] 8.79
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (7.49 - 9.33)
Median 10dB Bandwidth [kHz] (lower-upper) 4.59 (5.54 - 11.4)
Median duration [μs] (25-75 percentile) 1144 (1000 - 2437)

Event ID: 7517.241123134202.wav

Time: 2024-11-23 13:42UTC to 2024-11-23 13:48UTC

Event contains 18914 original clicks, 9457 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8776 clicks) .

Median statistics for 8776 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.04
Median 10dB Center Frequency [kHz] 8.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (6.94 - 9.05)
Median 10dB Bandwidth [kHz] (lower-upper) 4.66 (4.96 - 11.2)
Median duration [μs] (25-75 percentile) 954 (477 - 1951)

Event ID: 7517.241123134802.wav

Time: 2024-11-23 13:48UTC to 2024-11-23 13:54UTC

Event contains 21612 original clicks, 10806 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10006 clicks) .

Median statistics for 10006 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.82
Median 10dB Center Frequency [kHz] 8.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 ( 6.7 - 8.91)
Median 10dB Bandwidth [kHz] (lower-upper) 4.73 (4.78 - 11.1)
Median duration [μs] (25-75 percentile) 938 (451 - 1853)

Event ID: 7517.241123135402.wav

Time: 2024-11-23 13:54UTC to 2024-11-23 14:00UTC

Event contains 21668 original clicks, 10834 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9894 clicks) .

Median statistics for 9894 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.97
Median 10dB Center Frequency [kHz] 8.46
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (6.98 - 8.96)
Median 10dB Bandwidth [kHz] (lower-upper) 4.49 (5.03 - 11.2)
Median duration [μs] (25-75 percentile) 839 (323 - 1522)

Event ID: 7517.241123140002.wav

Time: 2024-11-23 14:00UTC to 2024-11-23 14:06UTC

Event contains 20940 original clicks, 10470 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9600 clicks) .

Median statistics for 9600 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.9
Median 10dB Center Frequency [kHz] 8.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 ( 6.8 - 8.94)
Median 10dB Bandwidth [kHz] (lower-upper) 4.92 (4.68 - 11.5)
Median duration [μs] (25-75 percentile) 777 (190 - 1483)

Event ID: 7517.241123140602.wav

Time: 2024-11-23 14:06UTC to 2024-11-23 14:12UTC

Event contains 21800 original clicks, 10900 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9916 clicks) .

Median statistics for 9916 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.45
Median 10dB Center Frequency [kHz] 7.47
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (5.52 - 7.38)
Median 10dB Bandwidth [kHz] (lower-upper) 4.81 (3.91 - 10.4)
Median duration [μs] (25-75 percentile) 761 (169 - 1324)

Event ID: 7517.241123141202.wav

Time: 2024-11-23 14:12UTC to 2024-11-23 14:18UTC

Event contains 18876 original clicks, 9438 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8563 clicks) .

Median statistics for 8563 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.77
Median 10dB Center Frequency [kHz] 6.88
Median 3dB Bandwidth [kHz] (lower-upper) 1.4 (4.88 - 6.72)
Median 10dB Bandwidth [kHz] (lower-upper) 4.87 (3.22 - 9.79)
Median duration [μs] (25-75 percentile) 839 (145 - 1403)

Event ID: 7517.241123141802.wav

Time: 2024-11-23 14:18UTC to 2024-11-23 14:24UTC

Event contains 16010 original clicks, 8005 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7268 clicks) .

Median statistics for 7268 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.74
Median 10dB Center Frequency [kHz] 7.95
Median 3dB Bandwidth [kHz] (lower-upper) 1.43 (5.56 - 7.71)
Median 10dB Bandwidth [kHz] (lower-upper) 4.9 (4.02 - 10.9)
Median duration [μs] (25-75 percentile) 839 (109 - 1695)

Event ID: 7517.241123142402.wav

Time: 2024-11-23 14:24UTC to 2024-11-23 14:30UTC

Event contains 11764 original clicks, 5882 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5229 clicks) .

Median statistics for 5229 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.67
Median 10dB Center Frequency [kHz] 7.53
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (5.58 - 7.67)
Median 10dB Bandwidth [kHz] (lower-upper) 5.15 (4.02 - 10.4)
Median duration [μs] (25-75 percentile) 832 (130 - 2036)

Event ID: 7517.241123143002.wav

Time: 2024-11-23 14:30UTC to 2024-11-23 14:36UTC

Event contains 23074 original clicks, 11537 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10432 clicks) .

Median statistics for 10432 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.83
Median 10dB Center Frequency [kHz] 6.57
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 ( 4.9 - 6.74)
Median 10dB Bandwidth [kHz] (lower-upper) 4.67 (3.63 - 9.16)
Median duration [μs] (25-75 percentile) 753 (211 - 1358)

Event ID: 7517.241123143602.wav

Time: 2024-11-23 14:36UTC to 2024-11-23 14:42UTC

Event contains 22010 original clicks, 11005 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9964 clicks) .

Median statistics for 9964 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.67
Median 10dB Center Frequency [kHz] 6.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (4.76 - 6.55)
Median 10dB Bandwidth [kHz] (lower-upper) 4.13 (3.55 - 8.61)
Median duration [μs] (25-75 percentile) 743 (229 - 1311)

Event ID: 7517.241123144202.wav

Time: 2024-11-23 14:42UTC to 2024-11-23 14:48UTC

Event contains 18722 original clicks, 9361 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8621 clicks) .

Median statistics for 8621 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.69
Median 10dB Center Frequency [kHz] 6.16
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (4.84 - 6.47)
Median 10dB Bandwidth [kHz] (lower-upper) 4.06 (3.68 - 8.39)
Median duration [μs] (25-75 percentile) 829 (287 - 1395)

Event ID: 7517.241123233602.wav

Time: 2024-11-23 23:36UTC to 2024-11-23 23:42UTC

Event contains 524 original clicks, 262 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .

Median statistics for 171 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 7.42
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 ( 6.1 - 7.81)
Median 10dB Bandwidth [kHz] (lower-upper) 5.07 ( 4.6 - 10.1)
Median duration [μs] (25-75 percentile) 0 (0 - 3)

Event ID: 7517.241123234802.wav

Time: 2024-11-23 23:48UTC to 2024-11-23 23:54UTC

Event contains 1030 original clicks, 515 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 348 clicks) .

Median statistics for 348 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.11
Median 10dB Center Frequency [kHz] 7.31
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (6.21 - 7.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.67 (4.68 - 9.7)
Median duration [μs] (25-75 percentile) 1.3 (0 - 131)

Event ID: 7517.241123235402.wav

Time: 2024-11-23 23:54UTC to 2024-11-24 00:00UTC

Event contains 1786 original clicks, 893 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 633 clicks) .

Median statistics for 633 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.8
Median 10dB Center Frequency [kHz] 7.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.99 - 7.6)
Median 10dB Bandwidth [kHz] (lower-upper) 4.72 (4.54 - 9.68)
Median duration [μs] (25-75 percentile) 52 (0 - 295)

Event ID: 7517.241124000002.wav

Time: 2024-11-24 00:00UTC to 2024-11-24 00:06UTC

Event contains 1834 original clicks, 917 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 639 clicks) .

Median statistics for 639 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.91
Median 10dB Center Frequency [kHz] 7.19
Median 3dB Bandwidth [kHz] (lower-upper) 1.4 (6.15 - 7.83)
Median 10dB Bandwidth [kHz] (lower-upper) 4.77 (4.62 - 9.57)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.241124000602.wav

Time: 2024-11-24 00:06UTC to 2024-11-24 00:12UTC

Event contains 898 original clicks, 449 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 291 clicks) .

Median statistics for 291 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.3
Median 10dB Center Frequency [kHz] 6.64
Median 3dB Bandwidth [kHz] (lower-upper) 1.61 (5.33 - 7.34)
Median 10dB Bandwidth [kHz] (lower-upper) 4.06 ( 4.2 - 8.98)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.241124001202.wav

Time: 2024-11-24 00:12UTC to 2024-11-24 00:18UTC

Event contains 978 original clicks, 489 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 308 clicks) .

Median statistics for 308 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.84
Median 10dB Center Frequency [kHz] 7.11
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (5.95 - 7.71)
Median 10dB Bandwidth [kHz] (lower-upper) 4.48 (4.46 - 9.53)
Median duration [μs] (25-75 percentile) 0 (0 - 126)

Event ID: 7517.241124001802.wav

Time: 2024-11-24 00:18UTC to 2024-11-24 00:24UTC

Event contains 578 original clicks, 289 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 197 clicks) .

Median statistics for 197 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.2
Median 10dB Center Frequency [kHz] 7.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (6.16 - 7.98)
Median 10dB Bandwidth [kHz] (lower-upper) 4.45 (4.75 - 9.64)
Median duration [μs] (25-75 percentile) 0 (0 - 26)

Event ID: 7517.241124002402.wav

Time: 2024-11-24 00:24UTC to 2024-11-24 00:30UTC

Event contains 484 original clicks, 242 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 144 clicks) .

Median statistics for 144 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.97
Median 10dB Center Frequency [kHz] 7.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 ( 7.1 - 8.64)
Median 10dB Bandwidth [kHz] (lower-upper) 4.36 ( 5.3 - 10.1)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.241124003002.wav

Time: 2024-11-24 00:30UTC to 2024-11-24 00:36UTC

Event contains 616 original clicks, 308 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 225 clicks) .

Median statistics for 225 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 7.8
Median 10dB Center Frequency [kHz] 7.94
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 ( 7.2 - 8.45)
Median 10dB Bandwidth [kHz] (lower-upper) 4.45 (5.09 - 10.8)
Median duration [μs] (25-75 percentile) 0 (0 - 50)

Event ID: 7517.241124003602.wav

Time: 2024-11-24 00:36UTC to 2024-11-24 00:42UTC

Event contains 1264 original clicks, 632 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 417 clicks) .

Median statistics for 417 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.35
Median 10dB Center Frequency [kHz] 7.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (6.39 - 8.27)
Median 10dB Bandwidth [kHz] (lower-upper) 4.96 (4.88 - 10.2)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.241124004202.wav

Time: 2024-11-24 00:42UTC to 2024-11-24 00:48UTC

Event contains 1606 original clicks, 803 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 459 clicks) .

Median statistics for 459 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.6
Median 10dB Center Frequency [kHz] 7.88
Median 3dB Bandwidth [kHz] (lower-upper) 1.55 (6.52 - 8.55)
Median 10dB Bandwidth [kHz] (lower-upper) 5.13 (4.96 - 10.4)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.241124004802.wav

Time: 2024-11-24 00:48UTC to 2024-11-24 00:54UTC

Event contains 1392 original clicks, 696 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 432 clicks) .

Median statistics for 432 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.5
Median 10dB Center Frequency [kHz] 7.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.64 - 8.45)
Median 10dB Bandwidth [kHz] (lower-upper) 5.07 (5.07 - 10.6)
Median duration [μs] (25-75 percentile) 0 (0 - 44)

Event ID: 7517.241124005402.wav

Time: 2024-11-24 00:54UTC to 2024-11-24 01:00UTC

Event contains 2726 original clicks, 1363 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 847 clicks) .

Median statistics for 847 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.51
Median 10dB Center Frequency [kHz] 7.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (6.72 - 8.38)
Median 10dB Bandwidth [kHz] (lower-upper) 4.6 (5.04 - 10.1)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.241124010002.wav

Time: 2024-11-24 01:00UTC to 2024-11-24 01:06UTC

Event contains 3008 original clicks, 1504 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1026 clicks) .

Median statistics for 1026 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.43
Median 10dB Center Frequency [kHz] 6.83
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (5.65 - 7.16)
Median 10dB Bandwidth [kHz] (lower-upper) 3.76 (4.42 - 8.99)
Median duration [μs] (25-75 percentile) 0 (0 - 222)

Event ID: 7517.241124010602.wav

Time: 2024-11-24 01:06UTC to 2024-11-24 01:12UTC

Event contains 5626 original clicks, 2813 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2176 clicks) .

Median statistics for 2176 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.78
Median 10dB Center Frequency [kHz] 7.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (5.85 - 7.62)
Median 10dB Bandwidth [kHz] (lower-upper) 4.15 (4.47 - 9.4)
Median duration [μs] (25-75 percentile) 50 (0 - 334)

Event ID: 7517.241124011202.wav

Time: 2024-11-24 01:12UTC to 2024-11-24 01:18UTC

Event contains 7312 original clicks, 3656 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2994 clicks) .

Median statistics for 2994 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.16
Median 10dB Center Frequency [kHz] 7.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.4 (6.31 - 7.99)
Median 10dB Bandwidth [kHz] (lower-upper) 4.61 ( 4.6 - 9.9)
Median duration [μs] (25-75 percentile) 83 (0 - 388)

Event ID: 7517.241124011802.wav

Time: 2024-11-24 01:18UTC to 2024-11-24 01:24UTC

Event contains 9562 original clicks, 4781 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3976 clicks) .

Median statistics for 3976 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.08
Median 10dB Center Frequency [kHz] 7.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.18 - 7.96)
Median 10dB Bandwidth [kHz] (lower-upper) 4.39 (4.58 - 10)
Median duration [μs] (25-75 percentile) 232 (3 - 1000)

Event ID: 7517.241124012402.wav

Time: 2024-11-24 01:24UTC to 2024-11-24 01:30UTC

Event contains 8892 original clicks, 4446 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3764 clicks) .

Median statistics for 3764 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.71
Median 10dB Center Frequency [kHz] 6.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (5.88 - 7.46)
Median 10dB Bandwidth [kHz] (lower-upper) 3.74 (4.53 - 9.06)
Median duration [μs] (25-75 percentile) 197 (0 - 1000)

Event ID: 7517.241124013002.wav

Time: 2024-11-24 01:30UTC to 2024-11-24 01:36UTC

Event contains 7654 original clicks, 3827 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3304 clicks) .

Median statistics for 3304 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.77
Median 10dB Center Frequency [kHz] 7.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (7.04 - 8.51)
Median 10dB Bandwidth [kHz] (lower-upper) 4 (5.28 - 10.2)
Median duration [μs] (25-75 percentile) 219 (0 - 1000)

Event ID: 7517.241124013602.wav

Time: 2024-11-24 01:36UTC to 2024-11-24 01:42UTC

Event contains 5752 original clicks, 2876 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2484 clicks) .

Median statistics for 2484 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.49
Median 10dB Center Frequency [kHz] 7.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (6.75 - 8.17)
Median 10dB Bandwidth [kHz] (lower-upper) 3.66 (5.22 - 9.87)
Median duration [μs] (25-75 percentile) 211 (0 - 1000)

Event ID: 7517.241124014202.wav

Time: 2024-11-24 01:42UTC to 2024-11-24 01:48UTC

Event contains 3198 original clicks, 1599 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1339 clicks) .

Median statistics for 1339 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.8
Median 10dB Center Frequency [kHz] 7.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (7.04 - 8.54)
Median 10dB Bandwidth [kHz] (lower-upper) 3.9 (5.56 - 10.1)
Median duration [μs] (25-75 percentile) 99 (0 - 1000)

Event ID: 7517.241124014802.wav

Time: 2024-11-24 01:48UTC to 2024-11-24 01:54UTC

Event contains 6348 original clicks, 3174 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2667 clicks) .

Median statistics for 2667 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.84
Median 10dB Center Frequency [kHz] 7.26
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (6.17 - 7.62)
Median 10dB Bandwidth [kHz] (lower-upper) 4.08 (4.64 - 9.7)
Median duration [μs] (25-75 percentile) 34 (0 - 444)

Event ID: 7517.241124015402.wav

Time: 2024-11-24 01:54UTC to 2024-11-24 02:00UTC

Event contains 9662 original clicks, 4831 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4298 clicks) .

Median statistics for 4298 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.14
Median 10dB Center Frequency [kHz] 6.57
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 ( 5.3 - 6.89)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (4.05 - 8.67)
Median duration [μs] (25-75 percentile) 201 (0 - 1000)

Event ID: 7517.241124020002.wav

Time: 2024-11-24 02:00UTC to 2024-11-24 02:06UTC

Event contains 11738 original clicks, 5869 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5378 clicks) .

Median statistics for 5378 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 6.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 ( 5 - 6.6)
Median 10dB Bandwidth [kHz] (lower-upper) 4.19 (3.63 - 9.1)
Median duration [μs] (25-75 percentile) 448 (21 - 1000)

Event ID: 7517.241124020602.wav

Time: 2024-11-24 02:06UTC to 2024-11-24 02:12UTC

Event contains 12390 original clicks, 6195 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5590 clicks) .

Median statistics for 5590 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.75
Median 10dB Center Frequency [kHz] 6.33
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (4.91 - 6.5)
Median 10dB Bandwidth [kHz] (lower-upper) 3.83 (3.68 - 8.71)
Median duration [μs] (25-75 percentile) 265 (8 - 1000)

Event ID: 7517.241124021802.wav

Time: 2024-11-24 02:18UTC to 2024-11-24 02:24UTC

Event contains 10006 original clicks, 5003 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4535 clicks) .

Median statistics for 4535 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.17
Median 10dB Center Frequency [kHz] 6.85
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (5.25 - 6.99)
Median 10dB Bandwidth [kHz] (lower-upper) 4.17 (3.76 - 9.37)
Median duration [μs] (25-75 percentile) 352 (10 - 1000)

Event ID: 7517.241124022402.wav

Time: 2024-11-24 02:24UTC to 2024-11-24 02:30UTC

Event contains 9534 original clicks, 4767 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4190 clicks) .

Median statistics for 4190 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.1
Median 10dB Center Frequency [kHz] 6.65
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (5.31 - 6.95)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (3.91 - 9.25)
Median duration [μs] (25-75 percentile) 271 (0 - 1000)

Event ID: 7517.241124023002.wav

Time: 2024-11-24 02:30UTC to 2024-11-24 02:36UTC

Event contains 6860 original clicks, 3430 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3142 clicks) .

Median statistics for 3142 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.09
Median 10dB Center Frequency [kHz] 6.73
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (5.31 - 6.85)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (3.92 - 9.1)
Median duration [μs] (25-75 percentile) 308 (0 - 1000)

Event ID: 7517.241124023602.wav

Time: 2024-11-24 02:36UTC to 2024-11-24 02:42UTC

Event contains 7552 original clicks, 3776 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3514 clicks) .

Median statistics for 3514 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 6.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 ( 4.8 - 6.64)
Median 10dB Bandwidth [kHz] (lower-upper) 4.19 (3.49 - 9.11)
Median duration [μs] (25-75 percentile) 313 (16 - 1000)

Event ID: 7517.241124025402.wav

Time: 2024-11-24 02:54UTC to 2024-11-24 03:00UTC

Event contains 1490 original clicks, 745 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 627 clicks) .

Median statistics for 627 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.83
Median 10dB Center Frequency [kHz] 5.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (5.01 - 6.63)
Median 10dB Bandwidth [kHz] (lower-upper) 3.82 (3.56 - 8.18)
Median duration [μs] (25-75 percentile) 269 (0 - 1000)

Event ID: 7517.241124093602.wav

Time: 2024-11-24 09:36UTC to 2024-11-24 09:42UTC

Event contains 724 original clicks, 362 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 334 clicks) .

Median statistics for 334 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 7.95
Median 10dB Center Frequency [kHz] 8.12
Median 3dB Bandwidth [kHz] (lower-upper) 1.68 (6.74 - 9.11)
Median 10dB Bandwidth [kHz] (lower-upper) 6.83 (3.62 - 12)
Median duration [μs] (25-75 percentile) 276 (136 - 1000)

Event ID: 7517.241124100602.wav

Time: 2024-11-24 10:06UTC to 2024-11-24 10:12UTC

Event contains 454 original clicks, 227 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 212 clicks) .

Median statistics for 212 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 9.31
Median 10dB Center Frequency [kHz] 9.8
Median 3dB Bandwidth [kHz] (lower-upper) 2.07 (7.96 - 10.2)
Median 10dB Bandwidth [kHz] (lower-upper) 7.28 (5.71 - 14.5)
Median duration [μs] (25-75 percentile) 362 (153 - 1000)

Event ID: 7517.241125040602.wav

Time: 2024-11-25 04:06UTC to 2024-11-25 04:12UTC

Event contains 546 original clicks, 273 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .

Median statistics for 236 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.42
Median 10dB Center Frequency [kHz] 8.59
Median 3dB Bandwidth [kHz] (lower-upper) 1.53 (7.26 - 9.59)
Median 10dB Bandwidth [kHz] (lower-upper) 6.77 (3.78 - 12.3)
Median duration [μs] (25-75 percentile) 275 (119 - 1000)

Event ID: 7517.241125095402.wav

Time: 2024-11-25 09:54UTC to 2024-11-25 10:00UTC

Event contains 506 original clicks, 253 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 163 clicks) .

Median statistics for 163 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12.8
Median 3dB Center Frequency [kHz] 12.5
Median 10dB Center Frequency [kHz] 13.1
Median 3dB Bandwidth [kHz] (lower-upper) 2.18 (11.1 - 14)
Median 10dB Bandwidth [kHz] (lower-upper) 6.75 (9.25 - 16.5)
Median duration [μs] (25-75 percentile) 102 (29 - 291)

Event ID: 7517.241125101202.wav

Time: 2024-11-25 10:12UTC to 2024-11-25 10:18UTC

Event contains 902 original clicks, 451 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 433 clicks) .

Median statistics for 433 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 13.6
Median 3dB Center Frequency [kHz] 13.6
Median 10dB Center Frequency [kHz] 13.9
Median 3dB Bandwidth [kHz] (lower-upper) 4.5 (11.1 - 15.8)
Median 10dB Bandwidth [kHz] (lower-upper) 9.65 (8.76 - 18.6)
Median duration [μs] (25-75 percentile) 250 (151 - 2471)

Event ID: 7517.241125101802.wav

Time: 2024-11-25 10:18UTC to 2024-11-25 10:24UTC

Event contains 1768 original clicks, 884 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 865 clicks) .

Median statistics for 865 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 13.2
Median 3dB Center Frequency [kHz] 13.2
Median 10dB Center Frequency [kHz] 13.7
Median 3dB Bandwidth [kHz] (lower-upper) 3.93 (11.1 - 15.2)
Median 10dB Bandwidth [kHz] (lower-upper) 9.41 (8.72 - 18.2)
Median duration [μs] (25-75 percentile) 988 (214 - 2469)

Event ID: 7517.241125102402.wav

Time: 2024-11-25 10:24UTC to 2024-11-25 10:30UTC

Event contains 1542 original clicks, 771 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 753 clicks) .

Median statistics for 753 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 13.2
Median 3dB Center Frequency [kHz] 13.7
Median 10dB Center Frequency [kHz] 14.3
Median 3dB Bandwidth [kHz] (lower-upper) 2.92 (11.8 - 15.3)
Median 10dB Bandwidth [kHz] (lower-upper) 7.03 (10.2 - 17.8)
Median duration [μs] (25-75 percentile) 618 (292 - 2450)

Event ID: 7517.241126013603.wav

Time: 2024-11-26 01:36UTC to 2024-11-26 01:42UTC

Event contains 606 original clicks, 303 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 270 clicks) .

Median statistics for 270 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.8
Median 3dB Center Frequency [kHz] 11
Median 10dB Center Frequency [kHz] 12.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.91 (9.22 - 12.3)
Median 10dB Bandwidth [kHz] (lower-upper) 6.1 (7.13 - 15.9)
Median duration [μs] (25-75 percentile) 302 (146 - 1000)

Event ID: 7517.241127105403.wav

Time: 2024-11-27 10:54UTC to 2024-11-27 11:00UTC

Event contains 606 original clicks, 303 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 218 clicks) .

Median statistics for 218 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.81
Median 10dB Center Frequency [kHz] 7.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (5.97 - 7.44)
Median 10dB Bandwidth [kHz] (lower-upper) 5.39 (4.04 - 10.7)
Median duration [μs] (25-75 percentile) 1625 (1000 - 2070)

Event ID: 7517.241127142403.wav

Time: 2024-11-27 14:24UTC to 2024-11-27 14:30UTC

Event contains 580 original clicks, 290 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 214 clicks) .

Median statistics for 214 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.1
Median 10dB Center Frequency [kHz] 6.94
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (6.03 - 7.9)
Median 10dB Bandwidth [kHz] (lower-upper) 4.91 (4.13 - 9.66)
Median duration [μs] (25-75 percentile) 0 (0 - 106)

Event ID: 7517.241127174203.wav

Time: 2024-11-27 17:42UTC to 2024-11-27 17:48UTC

Event contains 444 original clicks, 222 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 188 clicks) .

Median statistics for 188 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.27
Median 10dB Center Frequency [kHz] 6.45
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (5.43 - 7.09)
Median 10dB Bandwidth [kHz] (lower-upper) 3.86 (4.29 - 8.53)
Median duration [μs] (25-75 percentile) 593 (100 - 1265)

Event ID: 7517.241128143603.wav

Time: 2024-11-28 14:36UTC to 2024-11-28 14:42UTC

Event contains 408 original clicks, 204 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 175 clicks) .

Median statistics for 175 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.59
Median 10dB Center Frequency [kHz] 6.53
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.69 - 7.33)
Median 10dB Bandwidth [kHz] (lower-upper) 4.87 (4.11 - 8.85)
Median duration [μs] (25-75 percentile) 68 (0 - 189)

Event ID: 7517.241128144803.wav

Time: 2024-11-28 14:48UTC to 2024-11-28 14:54UTC

Event contains 502 original clicks, 251 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 219 clicks) .

Median statistics for 219 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.37
Median 10dB Center Frequency [kHz] 7.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.71 (6.27 - 8.46)
Median 10dB Bandwidth [kHz] (lower-upper) 4.92 (4.34 - 10.4)
Median duration [μs] (25-75 percentile) 209 (30 - 420)

Event ID: 7517.241128145403.wav

Time: 2024-11-28 14:54UTC to 2024-11-28 15:00UTC

Event contains 446 original clicks, 223 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 195 clicks) .

Median statistics for 195 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.01
Median 10dB Center Frequency [kHz] 7.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (6.21 - 7.66)
Median 10dB Bandwidth [kHz] (lower-upper) 4.35 (3.94 - 9.31)
Median duration [μs] (25-75 percentile) 133 (0 - 365)

Event ID: 7517.241128150003.wav

Time: 2024-11-28 15:00UTC to 2024-11-28 15:06UTC

Event contains 438 original clicks, 219 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 194 clicks) .

Median statistics for 194 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.6
Median 3dB Center Frequency [kHz] 6.33
Median 10dB Center Frequency [kHz] 6.69
Median 3dB Bandwidth [kHz] (lower-upper) 1.68 (5.41 - 7.94)
Median 10dB Bandwidth [kHz] (lower-upper) 4.09 ( 3.5 - 9.33)
Median duration [μs] (25-75 percentile) 129 (0 - 317)

Event ID: 7517.241128150603.wav

Time: 2024-11-28 15:06UTC to 2024-11-28 15:12UTC

Event contains 420 original clicks, 210 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 184 clicks) .

Median statistics for 184 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.87
Median 10dB Center Frequency [kHz] 7.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (6.24 - 7.65)
Median 10dB Bandwidth [kHz] (lower-upper) 3.73 (5.04 - 9.26)
Median duration [μs] (25-75 percentile) 55 (0 - 248)

Event ID: 7517.241128151203.wav

Time: 2024-11-28 15:12UTC to 2024-11-28 15:18UTC

Event contains 520 original clicks, 260 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 229 clicks) .

Median statistics for 229 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.71
Median 10dB Center Frequency [kHz] 7.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (6.04 - 7.44)
Median 10dB Bandwidth [kHz] (lower-upper) 4.03 ( 4.9 - 9.43)
Median duration [μs] (25-75 percentile) 5.2 (0 - 235)

Event ID: 7517.241128151803.wav

Time: 2024-11-28 15:18UTC to 2024-11-28 15:24UTC

Event contains 422 original clicks, 211 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .

Median statistics for 196 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.31
Median 10dB Center Frequency [kHz] 6.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 (5.35 - 7.11)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 (3.97 - 8.72)
Median duration [μs] (25-75 percentile) 139 (0 - 337)

Event ID: 7517.241128152403.wav

Time: 2024-11-28 15:24UTC to 2024-11-28 15:30UTC

Event contains 436 original clicks, 218 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 193 clicks) .

Median statistics for 193 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.14
Median 10dB Center Frequency [kHz] 5.9
Median 3dB Bandwidth [kHz] (lower-upper) 0.914 (5.64 - 6.6)
Median 10dB Bandwidth [kHz] (lower-upper) 2.69 (4.07 - 7.67)
Median duration [μs] (25-75 percentile) 39 (0 - 347)

Event ID: 7517.241128160003.wav

Time: 2024-11-28 16:00UTC to 2024-11-28 16:06UTC

Event contains 594 original clicks, 297 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 277 clicks) .

Median statistics for 277 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.69
Median 10dB Center Frequency [kHz] 7.16
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.93 - 7.29)
Median 10dB Bandwidth [kHz] (lower-upper) 4.28 (4.48 - 9.89)
Median duration [μs] (25-75 percentile) 498 (0 - 1254)

Event ID: 7517.241128161203.wav

Time: 2024-11-28 16:12UTC to 2024-11-28 16:18UTC

Event contains 600 original clicks, 300 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 258 clicks) .

Median statistics for 258 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.05
Median 10dB Center Frequency [kHz] 6.18
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.16 - 6.88)
Median 10dB Bandwidth [kHz] (lower-upper) 4 (3.29 - 8.25)
Median duration [μs] (25-75 percentile) 301 (19 - 1120)

Event ID: 7517.241129012720.wav

Time: 2024-11-29 01:27UTC to 2024-11-29 01:33UTC

Event contains 5216 original clicks, 2608 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1324 clicks) .

Median statistics for 1324 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.99
Median 10dB Center Frequency [kHz] 6.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (5.27 - 6.63)
Median 10dB Bandwidth [kHz] (lower-upper) 3.95 ( 4 - 8.4)
Median duration [μs] (25-75 percentile) 433 (100 - 1000)

Event ID: 7517.241129013320.wav

Time: 2024-11-29 01:33UTC to 2024-11-29 01:39UTC

Event contains 3480 original clicks, 1740 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 924 clicks) .

Median statistics for 924 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.88
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.22 - 6.65)
Median 10dB Bandwidth [kHz] (lower-upper) 4.57 (3.74 - 8.95)
Median duration [μs] (25-75 percentile) 154 (13 - 1000)

Event ID: 7517.241129020320.wav

Time: 2024-11-29 02:03UTC to 2024-11-29 02:09UTC

Event contains 466 original clicks, 233 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 149 clicks) .

Median statistics for 149 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.81
Median 10dB Center Frequency [kHz] 7.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.53 (5.91 - 7.83)
Median 10dB Bandwidth [kHz] (lower-upper) 5.58 ( 4.1 - 10.7)
Median duration [μs] (25-75 percentile) 1210 (383 - 2080)

Event ID: 7517.241129073920.wav

Time: 2024-11-29 07:39UTC to 2024-11-29 07:45UTC

Event contains 412 original clicks, 206 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 85 clicks) .

Median statistics for 85 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 6.47
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (5.92 - 7.02)
Median 10dB Bandwidth [kHz] (lower-upper) 3.64 (5.03 - 9.02)
Median duration [μs] (25-75 percentile) 112 (0 - 1257)

Event ID: 7517.241129092720.wav

Time: 2024-11-29 09:27UTC to 2024-11-29 09:33UTC

Event contains 818 original clicks, 409 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 312 clicks) .

Median statistics for 312 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.6
Median 10dB Center Frequency [kHz] 7.26
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.79 - 7.54)
Median 10dB Bandwidth [kHz] (lower-upper) 4.67 (4.11 - 10.1)
Median duration [μs] (25-75 percentile) 1006 (202 - 1763)

Event ID: 7517.241129093320.wav

Time: 2024-11-29 09:33UTC to 2024-11-29 09:39UTC

Event contains 446 original clicks, 223 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 131 clicks) .

Median statistics for 131 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.58
Median 10dB Center Frequency [kHz] 5.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (4.99 - 6.17)
Median 10dB Bandwidth [kHz] (lower-upper) 3.52 (3.76 - 7.68)
Median duration [μs] (25-75 percentile) 219 (0 - 1000)

Event ID: 7517.241129122720.wav

Time: 2024-11-29 12:27UTC to 2024-11-29 12:33UTC

Event contains 406 original clicks, 203 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 145 clicks) .

Median statistics for 145 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.83
Median 10dB Center Frequency [kHz] 6.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (6.15 - 7.73)
Median 10dB Bandwidth [kHz] (lower-upper) 4.27 (4.51 - 8.95)
Median duration [μs] (25-75 percentile) 21 (0 - 420)

Event ID: 7517.241129123320.wav

Time: 2024-11-29 12:33UTC to 2024-11-29 12:39UTC

Event contains 408 original clicks, 204 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 136 clicks) .

Median statistics for 136 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.6
Median 3dB Center Frequency [kHz] 6.51
Median 10dB Center Frequency [kHz] 6.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 ( 5.7 - 7.36)
Median 10dB Bandwidth [kHz] (lower-upper) 3.92 (4.61 - 8.55)
Median duration [μs] (25-75 percentile) 27 (0 - 233)

Event ID: 7517.241129125720.wav

Time: 2024-11-29 12:57UTC to 2024-11-29 13:03UTC

Event contains 472 original clicks, 236 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 169 clicks) .

Median statistics for 169 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.84
Median 10dB Center Frequency [kHz] 7.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 ( 6 - 7.8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.78 (4.51 - 10.1)
Median duration [μs] (25-75 percentile) 83 (8 - 1000)

Event ID: 7517.241129130320.wav

Time: 2024-11-29 13:03UTC to 2024-11-29 13:09UTC

Event contains 826 original clicks, 413 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 288 clicks) .

Median statistics for 288 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.58
Median 10dB Center Frequency [kHz] 6.7
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (5.72 - 7.38)
Median 10dB Bandwidth [kHz] (lower-upper) 4.17 (4.64 - 8.89)
Median duration [μs] (25-75 percentile) 216 (44 - 1000)

Event ID: 7517.241129130920.wav

Time: 2024-11-29 13:09UTC to 2024-11-29 13:15UTC

Event contains 654 original clicks, 327 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 254 clicks) .

Median statistics for 254 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.69
Median 10dB Center Frequency [kHz] 7
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 ( 5.9 - 7.41)
Median 10dB Bandwidth [kHz] (lower-upper) 4.57 (4.52 - 9.37)
Median duration [μs] (25-75 percentile) 246 (22 - 1092)

Event ID: 7517.241129131520.wav

Time: 2024-11-29 13:15UTC to 2024-11-29 13:21UTC

Event contains 756 original clicks, 378 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 274 clicks) .

Median statistics for 274 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.17
Median 10dB Center Frequency [kHz] 7.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 (6.34 - 7.83)
Median 10dB Bandwidth [kHz] (lower-upper) 4.68 (4.76 - 9.96)
Median duration [μs] (25-75 percentile) 112 (14 - 489)

Event ID: 7517.241129132120.wav

Time: 2024-11-29 13:21UTC to 2024-11-29 13:27UTC

Event contains 1224 original clicks, 612 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 450 clicks) .

Median statistics for 450 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.21
Median 10dB Center Frequency [kHz] 7.59
Median 3dB Bandwidth [kHz] (lower-upper) 1.57 ( 6.2 - 8.18)
Median 10dB Bandwidth [kHz] (lower-upper) 4.76 (4.69 - 10.1)
Median duration [μs] (25-75 percentile) 106 (0 - 421)

Event ID: 7517.241129132720.wav

Time: 2024-11-29 13:27UTC to 2024-11-29 13:33UTC

Event contains 1104 original clicks, 552 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 397 clicks) .

Median statistics for 397 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.12
Median 10dB Center Frequency [kHz] 7.79
Median 3dB Bandwidth [kHz] (lower-upper) 1.73 (6.24 - 8.03)
Median 10dB Bandwidth [kHz] (lower-upper) 5.07 (4.64 - 10.5)
Median duration [μs] (25-75 percentile) 55 (0 - 190)

Event ID: 7517.241129133320.wav

Time: 2024-11-29 13:33UTC to 2024-11-29 13:39UTC

Event contains 2070 original clicks, 1035 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 758 clicks) .

Median statistics for 758 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.26
Median 10dB Center Frequency [kHz] 7.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.57 (6.26 - 8.19)
Median 10dB Bandwidth [kHz] (lower-upper) 5 (4.76 - 10.7)
Median duration [μs] (25-75 percentile) 6.5 (0 - 149)

Event ID: 7517.241129133920.wav

Time: 2024-11-29 13:39UTC to 2024-11-29 13:45UTC

Event contains 1848 original clicks, 924 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 647 clicks) .

Median statistics for 647 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.51
Median 10dB Center Frequency [kHz] 7.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.63 (6.56 - 8.53)
Median 10dB Bandwidth [kHz] (lower-upper) 5.22 (4.91 - 10.7)
Median duration [μs] (25-75 percentile) 16 (0 - 123)

Event ID: 7517.241129134520.wav

Time: 2024-11-29 13:45UTC to 2024-11-29 13:51UTC

Event contains 1322 original clicks, 661 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 490 clicks) .

Median statistics for 490 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.51
Median 10dB Center Frequency [kHz] 8.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.69 (6.51 - 8.45)
Median 10dB Bandwidth [kHz] (lower-upper) 5.44 ( 4.8 - 10.7)
Median duration [μs] (25-75 percentile) 0 (0 - 104)

Event ID: 7517.241129135120.wav

Time: 2024-11-29 13:51UTC to 2024-11-29 13:57UTC

Event contains 944 original clicks, 472 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 327 clicks) .

Median statistics for 327 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.07
Median 10dB Center Frequency [kHz] 7.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (6.13 - 7.94)
Median 10dB Bandwidth [kHz] (lower-upper) 5.01 (4.54 - 10.1)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.241129135720.wav

Time: 2024-11-29 13:57UTC to 2024-11-29 14:03UTC

Event contains 1562 original clicks, 781 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 536 clicks) .

Median statistics for 536 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.78
Median 10dB Center Frequency [kHz] 7.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.37 ( 6 - 7.63)
Median 10dB Bandwidth [kHz] (lower-upper) 4.46 ( 4.6 - 9.46)
Median duration [μs] (25-75 percentile) 0 (0 - 107)

Event ID: 7517.241129140320.wav

Time: 2024-11-29 14:03UTC to 2024-11-29 14:09UTC

Event contains 850 original clicks, 425 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 303 clicks) .

Median statistics for 303 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.06
Median 10dB Center Frequency [kHz] 7.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (6.38 - 7.96)
Median 10dB Bandwidth [kHz] (lower-upper) 4.82 ( 4.6 - 10.3)
Median duration [μs] (25-75 percentile) 10 (0 - 153)

Event ID: 7517.241129144520.wav

Time: 2024-11-29 14:45UTC to 2024-11-29 14:51UTC

Event contains 786 original clicks, 393 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .

Median statistics for 220 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.54
Median 10dB Center Frequency [kHz] 6.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (6.09 - 7.26)
Median 10dB Bandwidth [kHz] (lower-upper) 4.38 (4.43 - 9.31)
Median duration [μs] (25-75 percentile) 1066 (100 - 2056)

Event ID: 7517.241129145120.wav

Time: 2024-11-29 14:51UTC to 2024-11-29 14:57UTC

Event contains 788 original clicks, 394 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 176 clicks) .

Median statistics for 176 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.18
Median 10dB Center Frequency [kHz] 6.3
Median 3dB Bandwidth [kHz] (lower-upper) 0.943 (5.44 - 6.62)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (4.14 - 8.64)
Median duration [μs] (25-75 percentile) 619 (16 - 1891)

Event ID: 7517.241129145720.wav

Time: 2024-11-29 14:57UTC to 2024-11-29 15:03UTC

Event contains 674 original clicks, 337 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 208 clicks) .

Median statistics for 208 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.84
Median 10dB Center Frequency [kHz] 6.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (5.27 - 6.6)
Median 10dB Bandwidth [kHz] (lower-upper) 3.47 (4.19 - 8.02)
Median duration [μs] (25-75 percentile) 345 (8 - 1000)

Event ID: 7517.241129150320.wav

Time: 2024-11-29 15:03UTC to 2024-11-29 15:09UTC

Event contains 1110 original clicks, 555 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 378 clicks) .

Median statistics for 378 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.99
Median 10dB Center Frequency [kHz] 6.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (5.17 - 6.72)
Median 10dB Bandwidth [kHz] (lower-upper) 3.84 (3.81 - 8.25)
Median duration [μs] (25-75 percentile) 209 (11 - 1000)

Event ID: 7517.241129150921.wav

Time: 2024-11-29 15:09UTC to 2024-11-29 15:15UTC

Event contains 1132 original clicks, 566 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 368 clicks) .

Median statistics for 368 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.47
Median 10dB Center Frequency [kHz] 6.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (5.56 - 7.22)
Median 10dB Bandwidth [kHz] (lower-upper) 3.66 (4.36 - 8.36)
Median duration [μs] (25-75 percentile) 416 (46 - 1000)

Event ID: 7517.241129151521.wav

Time: 2024-11-29 15:15UTC to 2024-11-29 15:21UTC

Event contains 1780 original clicks, 890 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 652 clicks) .

Median statistics for 652 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.1
Median 10dB Center Frequency [kHz] 6.31
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (5.35 - 6.86)
Median 10dB Bandwidth [kHz] (lower-upper) 3.56 (4.16 - 8.3)
Median duration [μs] (25-75 percentile) 584 (171 - 1122)

Event ID: 7517.241129152121.wav

Time: 2024-11-29 15:21UTC to 2024-11-29 15:27UTC

Event contains 1468 original clicks, 734 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 556 clicks) .

Median statistics for 556 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 5.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.27 - 6.47)
Median 10dB Bandwidth [kHz] (lower-upper) 3.41 (3.96 - 7.96)
Median duration [μs] (25-75 percentile) 627 (100 - 1059)

Event ID: 7517.241129153321.wav

Time: 2024-11-29 15:33UTC to 2024-11-29 15:39UTC

Event contains 774 original clicks, 387 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 252 clicks) .

Median statistics for 252 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.63
Median 10dB Center Frequency [kHz] 6.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 (4.97 - 6.42)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 (3.84 - 8.16)
Median duration [μs] (25-75 percentile) 499 (100 - 1154)

Event ID: 7517.241129153921.wav

Time: 2024-11-29 15:39UTC to 2024-11-29 15:45UTC

Event contains 670 original clicks, 335 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 205 clicks) .

Median statistics for 205 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 6.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.14 - 6.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.76 (4.07 - 8.1)
Median duration [μs] (25-75 percentile) 576 (162 - 1170)

Event ID: 7517.241129154521.wav

Time: 2024-11-29 15:45UTC to 2024-11-29 15:51UTC

Event contains 1228 original clicks, 614 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 416 clicks) .

Median statistics for 416 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.91
Median 10dB Center Frequency [kHz] 6.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (5.03 - 6.53)
Median 10dB Bandwidth [kHz] (lower-upper) 3.33 (3.82 - 8.08)
Median duration [μs] (25-75 percentile) 549 (100 - 1288)

Event ID: 7517.241129155721.wav

Time: 2024-11-29 15:57UTC to 2024-11-29 16:03UTC

Event contains 1866 original clicks, 933 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 706 clicks) .

Median statistics for 706 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.13
Median 10dB Center Frequency [kHz] 6.17
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (5.46 - 6.87)
Median 10dB Bandwidth [kHz] (lower-upper) 3.44 (3.99 - 8.2)
Median duration [μs] (25-75 percentile) 458 (100 - 1105)

Event ID: 7517.241129160321.wav

Time: 2024-11-29 16:03UTC to 2024-11-29 16:09UTC

Event contains 1578 original clicks, 789 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 598 clicks) .

Median statistics for 598 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.08
Median 10dB Center Frequency [kHz] 6.17
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (5.45 - 6.82)
Median 10dB Bandwidth [kHz] (lower-upper) 3.07 (4.06 - 8.02)
Median duration [μs] (25-75 percentile) 369 (0 - 1025)

Event ID: 7517.241129160921.wav

Time: 2024-11-29 16:09UTC to 2024-11-29 16:15UTC

Event contains 1596 original clicks, 798 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 639 clicks) .

Median statistics for 639 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.47
Median 10dB Center Frequency [kHz] 6.49
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (5.81 - 7.22)
Median 10dB Bandwidth [kHz] (lower-upper) 3.22 (4.54 - 8.4)
Median duration [μs] (25-75 percentile) 206 (0 - 1000)

Event ID: 7517.241129161521.wav

Time: 2024-11-29 16:15UTC to 2024-11-29 16:21UTC

Event contains 3022 original clicks, 1511 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1253 clicks) .

Median statistics for 1253 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.3
Median 10dB Center Frequency [kHz] 6.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (5.69 - 6.99)
Median 10dB Bandwidth [kHz] (lower-upper) 3.06 (4.15 - 8.06)
Median duration [μs] (25-75 percentile) 219 (0 - 1000)

Event ID: 7517.241129163921.wav

Time: 2024-11-29 16:39UTC to 2024-11-29 16:45UTC

Event contains 2030 original clicks, 1015 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 821 clicks) .

Median statistics for 821 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.74
Median 10dB Center Frequency [kHz] 6.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (6.12 - 7.37)
Median 10dB Bandwidth [kHz] (lower-upper) 3.49 (4.58 - 8.76)
Median duration [μs] (25-75 percentile) 63 (0 - 1000)

Event ID: 7517.241129164521.wav

Time: 2024-11-29 16:45UTC to 2024-11-29 16:51UTC

Event contains 2424 original clicks, 1212 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 959 clicks) .

Median statistics for 959 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.38
Median 10dB Center Frequency [kHz] 6.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.67 - 7.14)
Median 10dB Bandwidth [kHz] (lower-upper) 3.83 (3.83 - 8.68)
Median duration [μs] (25-75 percentile) 250 (0 - 1006)

Event ID: 7517.241129165121.wav

Time: 2024-11-29 16:51UTC to 2024-11-29 16:57UTC

Event contains 2456 original clicks, 1228 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1043 clicks) .

Median statistics for 1043 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.29
Median 10dB Center Frequency [kHz] 7.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.59 - 7.94)
Median 10dB Bandwidth [kHz] (lower-upper) 3.53 (4.87 - 9.35)
Median duration [μs] (25-75 percentile) 136 (0 - 1185)

Event ID: 7517.241129165721.wav

Time: 2024-11-29 16:57UTC to 2024-11-29 17:03UTC

Event contains 2134 original clicks, 1067 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 901 clicks) .

Median statistics for 901 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.26
Median 10dB Center Frequency [kHz] 7.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 ( 6.6 - 7.84)
Median 10dB Bandwidth [kHz] (lower-upper) 3.27 ( 5.1 - 9.14)
Median duration [μs] (25-75 percentile) 2.6 (0 - 1000)

Event ID: 7517.241129170321.wav

Time: 2024-11-29 17:03UTC to 2024-11-29 17:09UTC

Event contains 1936 original clicks, 968 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 812 clicks) .

Median statistics for 812 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.49
Median 10dB Center Frequency [kHz] 6.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (5.88 - 7.25)
Median 10dB Bandwidth [kHz] (lower-upper) 3.31 (4.29 - 8.94)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7517.241129170921.wav

Time: 2024-11-29 17:09UTC to 2024-11-29 17:15UTC

Event contains 2438 original clicks, 1219 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 967 clicks) .

Median statistics for 967 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.82
Median 10dB Center Frequency [kHz] 6.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (5.12 - 6.64)
Median 10dB Bandwidth [kHz] (lower-upper) 3.55 (3.89 - 8.05)
Median duration [μs] (25-75 percentile) 10 (0 - 1000)

Event ID: 7517.241129171521.wav

Time: 2024-11-29 17:15UTC to 2024-11-29 17:21UTC

Event contains 4316 original clicks, 2158 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1782 clicks) .

Median statistics for 1782 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.14
Median 10dB Center Frequency [kHz] 7.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (6.47 - 7.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.33 ( 5.1 - 8.92)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7517.241129173921.wav

Time: 2024-11-29 17:39UTC to 2024-11-29 17:45UTC

Event contains 884 original clicks, 442 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 314 clicks) .

Median statistics for 314 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.84
Median 10dB Center Frequency [kHz] 5.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.04 - 6.67)
Median 10dB Bandwidth [kHz] (lower-upper) 3.51 (4.01 - 8.02)
Median duration [μs] (25-75 percentile) 35 (0 - 317)

Event ID: 7517.241129180321.wav

Time: 2024-11-29 18:03UTC to 2024-11-29 18:09UTC

Event contains 694 original clicks, 347 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 221 clicks) .

Median statistics for 221 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.86
Median 10dB Center Frequency [kHz] 6.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (4.98 - 6.69)
Median 10dB Bandwidth [kHz] (lower-upper) 4.08 (3.94 - 8.07)
Median duration [μs] (25-75 percentile) 128 (0 - 1000)

Event ID: 7517.241129180921.wav

Time: 2024-11-29 18:09UTC to 2024-11-29 18:15UTC

Event contains 1800 original clicks, 900 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 660 clicks) .

Median statistics for 660 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.71
Median 10dB Center Frequency [kHz] 6.77
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 ( 5.8 - 7.46)
Median 10dB Bandwidth [kHz] (lower-upper) 4.01 (4.22 - 8.78)
Median duration [μs] (25-75 percentile) 94 (0 - 479)

Event ID: 7517.241129181521.wav

Time: 2024-11-29 18:15UTC to 2024-11-29 18:21UTC

Event contains 2538 original clicks, 1269 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 981 clicks) .

Median statistics for 981 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.33
Median 10dB Center Frequency [kHz] 6.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (5.65 - 7.17)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 ( 4.2 - 8.76)
Median duration [μs] (25-75 percentile) 65 (0 - 1000)

Event ID: 7517.241129182721.wav

Time: 2024-11-29 18:27UTC to 2024-11-29 18:33UTC

Event contains 1452 original clicks, 726 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 533 clicks) .

Median statistics for 533 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.94
Median 10dB Center Frequency [kHz] 6.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (4.97 - 6.74)
Median 10dB Bandwidth [kHz] (lower-upper) 3.44 (3.71 - 8.62)
Median duration [μs] (25-75 percentile) 193 (0 - 1000)

Event ID: 7517.241129183321.wav

Time: 2024-11-29 18:33UTC to 2024-11-29 18:39UTC

Event contains 1952 original clicks, 976 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 776 clicks) .

Median statistics for 776 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.94
Median 10dB Center Frequency [kHz] 6.19
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (5.11 - 6.88)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (3.67 - 8.69)
Median duration [μs] (25-75 percentile) 753 (100 - 1333)

Event ID: 7517.241129190321.wav

Time: 2024-11-29 19:03UTC to 2024-11-29 19:09UTC

Event contains 524 original clicks, 262 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 174 clicks) .

Median statistics for 174 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.96
Median 10dB Center Frequency [kHz] 7.01
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (6.29 - 7.6)
Median 10dB Bandwidth [kHz] (lower-upper) 3.35 (4.65 - 8.94)
Median duration [μs] (25-75 percentile) 263 (0 - 1000)

Event ID: 7517.241129190921.wav

Time: 2024-11-29 19:09UTC to 2024-11-29 19:15UTC

Event contains 536 original clicks, 268 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .

Median statistics for 191 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.7
Median 10dB Center Frequency [kHz] 5.73
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (4.95 - 6.48)
Median 10dB Bandwidth [kHz] (lower-upper) 3.64 (3.84 - 7.66)
Median duration [μs] (25-75 percentile) 349 (100 - 1116)

Event ID: 7517.241129191521.wav

Time: 2024-11-29 19:15UTC to 2024-11-29 19:21UTC

Event contains 518 original clicks, 259 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 189 clicks) .

Median statistics for 189 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.52
Median 10dB Center Frequency [kHz] 7.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (6.98 - 8.14)
Median 10dB Bandwidth [kHz] (lower-upper) 3.85 (5.12 - 9.33)
Median duration [μs] (25-75 percentile) 271 (21 - 1000)

Event ID: 7517.241129192121.wav

Time: 2024-11-29 19:21UTC to 2024-11-29 19:27UTC

Event contains 1340 original clicks, 670 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 530 clicks) .

Median statistics for 530 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.92
Median 10dB Center Frequency [kHz] 6.11
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (5.21 - 6.64)
Median 10dB Bandwidth [kHz] (lower-upper) 3.28 (4.14 - 8)
Median duration [μs] (25-75 percentile) 683 (249 - 1251)

Event ID: 7517.241129192721.wav

Time: 2024-11-29 19:27UTC to 2024-11-29 19:33UTC

Event contains 1528 original clicks, 764 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 563 clicks) .

Median statistics for 563 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.04
Median 10dB Center Frequency [kHz] 7.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (6.17 - 7.9)
Median 10dB Bandwidth [kHz] (lower-upper) 4.02 (4.71 - 9.16)
Median duration [μs] (25-75 percentile) 459 (177 - 1075)

Event ID: 7517.241129193321.wav

Time: 2024-11-29 19:33UTC to 2024-11-29 19:39UTC

Event contains 1018 original clicks, 509 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 368 clicks) .

Median statistics for 368 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.09
Median 10dB Center Frequency [kHz] 6.32
Median 3dB Bandwidth [kHz] (lower-upper) 1.47 (5.28 - 6.79)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (3.93 - 8.49)
Median duration [μs] (25-75 percentile) 589 (218 - 1341)

Event ID: 7517.241202091521.wav

Time: 2024-12-02 09:15UTC to 2024-12-02 09:21UTC

Event contains 3834 original clicks, 1917 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 838 clicks) .

Median statistics for 838 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.99
Median 10dB Center Frequency [kHz] 6.18
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (5.51 - 6.56)
Median 10dB Bandwidth [kHz] (lower-upper) 3.18 (4.41 - 7.92)
Median duration [μs] (25-75 percentile) 50 (0 - 485)

Event ID: 7517.241202092721.wav

Time: 2024-12-02 09:27UTC to 2024-12-02 09:33UTC

Event contains 906 original clicks, 453 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 246 clicks) .

Median statistics for 246 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 6.42
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.01 - 6.75)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (3.74 - 8.78)
Median duration [μs] (25-75 percentile) 115 (5 - 451)

Event ID: 7517.241202143921.wav

Time: 2024-12-02 14:39UTC to 2024-12-02 14:45UTC

Event contains 412 original clicks, 206 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 112 clicks) .

Median statistics for 112 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 7.28
Median 10dB Center Frequency [kHz] 7.45
Median 3dB Bandwidth [kHz] (lower-upper) 0.844 ( 7 - 7.74)
Median 10dB Bandwidth [kHz] (lower-upper) 3.32 (5.85 - 8.87)
Median duration [μs] (25-75 percentile) 763 (250 - 1703)

Event ID: 7517.241202163321.wav

Time: 2024-12-02 16:33UTC to 2024-12-02 16:39UTC

Event contains 512 original clicks, 256 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 37 clicks) .

Median statistics for 37 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 13.2
Median 3dB Center Frequency [kHz] 11.3
Median 10dB Center Frequency [kHz] 11.4
Median 3dB Bandwidth [kHz] (lower-upper) 0.618 (11.1 - 11.7)
Median 10dB Bandwidth [kHz] (lower-upper) 1.38 (10.1 - 12.8)
Median duration [μs] (25-75 percentile) 261 (39 - 1000)

Event ID: 7517.241202195721.wav

Time: 2024-12-02 19:57UTC to 2024-12-02 20:03UTC

Event contains 448 original clicks, 224 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .

Median statistics for 191 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.09
Median 10dB Center Frequency [kHz] 8.9
Median 3dB Bandwidth [kHz] (lower-upper) 3.31 (6.12 - 10.3)
Median 10dB Bandwidth [kHz] (lower-upper) 8.32 (4.14 - 13)
Median duration [μs] (25-75 percentile) 1035 (215 - 2474)

Event ID: 7517.241203170322.wav

Time: 2024-12-03 17:03UTC to 2024-12-03 17:09UTC

Event contains 1382 original clicks, 691 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 312 clicks) .

Median statistics for 312 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.2
Median 10dB Center Frequency [kHz] 6.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.56 - 6.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.02 (4.26 - 8.53)
Median duration [μs] (25-75 percentile) 82 (14 - 476)

Event ID: 7517.241203170922.wav

Time: 2024-12-03 17:09UTC to 2024-12-03 17:15UTC

Event contains 3616 original clicks, 1808 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 817 clicks) .

Median statistics for 817 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.74
Median 10dB Center Frequency [kHz] 6.14
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (5.09 - 6.58)
Median 10dB Bandwidth [kHz] (lower-upper) 4.14 (3.78 - 8.37)
Median duration [μs] (25-75 percentile) 156 (23 - 1000)

Clean up Event Table

# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets, 
                                    paste0('eventTable_', params$mission, '_', 
                                           params$drift, '_', Sys.Date(),'.csv')))

#dbDisconnect(dbFile)

After additional filtering based on median peak frequency, 150 events events of 2949 original events remain.